Skip to content

Commit ef45458

Browse files
committed
eban
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@989 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 9527d90 commit ef45458

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Fri Oct 6 14:50:24 2000 WATANABE Hirofumi <eban@ruby-lang.org>
2+
3+
* ext/extmk.rb.in, lib/mkmf.rb: remove "DESTDIR =".
4+
5+
* Makefile.in, win32/Makefile.sub, ruby.1: renamed -X to -C.
6+
17
Thu Oct 5 18:02:39 2000 Yukihiro Matsumoto <matz@ruby-lang.org>
28

39
* object.c (rb_obj_dup): should have propagated taint flag.

Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ OBJS = array.@OBJEXT@ \
8383
$(MISSING)
8484

8585
all: miniruby$(EXEEXT) @PREP@ rbconfig.rb $(LIBRUBY)
86-
@@MINIRUBY@ -Xext extmk.rb @EXTSTATIC@
86+
@@MINIRUBY@ -Cext extmk.rb @EXTSTATIC@
8787

8888
miniruby$(EXEEXT): config.status $(LIBRUBY_A) $(MAINOBJ) dmyext.@OBJEXT@
8989
@rm -f $@
@@ -108,7 +108,7 @@ install: rbconfig.rb
108108

109109
clean:; @rm -f $(OBJS) $(LIBRUBY_A) $(LIBRUBY_SO) $(LIBRUBY_ALIASES) $(MAINOBJ) rbconfig.rb
110110
@rm -f ext/extinit.c ext/extinit.@OBJEXT@ dmyext.@OBJEXT@
111-
@-@MINIRUBY@ -Xext extmk.rb clean 2> /dev/null || true
111+
@-@MINIRUBY@ -Cext extmk.rb clean 2> /dev/null || true
112112
@rm -f $(PROGRAM) miniruby$(EXEEXT)
113113

114114
distclean: clean

ext/extmk.rb.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,6 @@ VPATH = #{$srcdir}
381381
382382
topdir = #{$topdir}
383383
hdrdir = #{$top_srcdir}
384-
DESTDIR =
385384
386385
CC = @CC@
387386

lib/mkmf.rb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,6 @@ def create_makefile(target)
407407
RUBY_INSTALL_NAME = #{CONFIG["RUBY_INSTALL_NAME"]}
408408
RUBY_SO_NAME = #{CONFIG["RUBY_SO_NAME"]}
409409
410-
DESTDIR =
411410
prefix = $(DESTDIR)#{CONFIG["prefix"]}
412411
exec_prefix = $(DESTDIR)#{CONFIG["exec_prefix"]}
413412
libdir = $(DESTDIR)#{$libdir}#{target_prefix}

ruby.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ The end of script must be specified with either EOF, ^D (control-D),
279279
^Z (control-Z), or reserved word __END__.If the directory name is
280280
specified, Ruby will switch to that directory before executing script.
281281
.TP
282-
.B -X directory
282+
.B -C directory
283283
causes Ruby to switch to the directory.
284284
.TP
285285
.B -y --yydebug

win32/Makefile.sub

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ OBJS = array.obj \
102102
all: miniruby$(EXEEXT) rbconfig.rb ext/extmk.rb \
103103
$(LIBRUBY) $(MISCLIBS)
104104
set LIB=../../win32;$(ORGLIBPATH)
105-
@.\miniruby$(EXEEXT) -Xext extmk.rb
105+
@.\miniruby$(EXEEXT) -Cext extmk.rb
106106

107107
ruby: $(PROGRAM)
108108
rubyw: $(WPROGRAM)
@@ -154,7 +154,7 @@ install: rbconfig.rb
154154

155155
clean:; @rm -f $(OBJS) $(LIBRUBY_A) $(MAINOBJ) rbconfig.rb
156156
@rm -f ext/extinit.c ext/extinit.obj ext/vc*.pdb *.obj *.res
157-
@-.\miniruby$(EXEEXT) -Xext extmk.rb clean
157+
@-.\miniruby$(EXEEXT) -Cext extmk.rb clean
158158

159159
distclean: clean
160160
@rm -f Makefile ext/extmk.rb config.h

0 commit comments

Comments
 (0)