mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
eban
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@813 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7909682940
commit
70fa7705dc
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
Wed Jul 5 01:02:53 2000 WATANABE Hirofumi <eban@os.rim.or.jp>
|
||||
|
||||
* ext/extmk.rb.in: join ' ' -> join(' ').
|
||||
|
||||
* lib/mkmf.rb: ditto.
|
||||
|
||||
Tue Jul 4 13:51:29 2000 Yukihiro Matsumoto <matz@netlab.co.jp>
|
||||
|
||||
* ext/dbm/dbm.c: add methods added to Hash in 1.5.x.
|
||||
|
|
|
@ -421,7 +421,7 @@ TARGET = #{target}
|
|||
DLLIB = $(TARGET).#{$static ? $LIBEXT : "@DLEXT@"}
|
||||
|
||||
RUBY = #{ruby_interpreter} -I$(topdir) -I$(hdrdir)/lib
|
||||
RM = $(RUBY) -r ftools -e "File::rm_f *Dir[ARGV.join ' ']"
|
||||
RM = $(RUBY) -r ftools -e 'File::rm_f(*Dir[ARGV.join(" ")])'
|
||||
|
||||
EXEEXT = @EXEEXT@
|
||||
|
||||
|
|
|
@ -405,7 +405,7 @@ TARGET = #{target}
|
|||
DLLIB = $(TARGET).#{CONFIG["DLEXT"]}
|
||||
|
||||
RUBY = #{CONFIG["ruby_install_name"]}
|
||||
RM = $(RUBY) -r ftools -e 'File::rm_f *Dir[ARGV.join " "]'
|
||||
RM = $(RUBY) -r ftools -e 'File::rm_f(*Dir[ARGV.join(" ")])'
|
||||
|
||||
EXEEXT = #{CONFIG["EXEEXT"]}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue