diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-07-17 02:13:13 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-07-17 02:13:13 +0000 |
commit | b699e76df19586beba63181cbd01e7c3840eeb1d (patch) | |
tree | 8d5113bd268916c84cf81108af4ce44a3c717a03 /lib | |
parent | 2472ebfb37d2b86b3532e030bd31c5b38d33c7e2 (diff) | |
download | ruby-b699e76df19586beba63181cbd01e7c3840eeb1d.tar.gz ruby-b699e76df19586beba63181cbd01e7c3840eeb1d.tar.xz ruby-b699e76df19586beba63181cbd01e7c3840eeb1d.zip |
* ext/extmk.rb.in: modify RM macro because command.com/cmd.exe don't
recognize single quotation as quote character.
* lib/mkmf.rb: ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r-- | lib/mkmf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb index e28cd4986..d33045ddb 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -469,7 +469,7 @@ TARGET = #{target} DLLIB = $(TARGET).#{CONFIG["DLEXT"]} RUBY = #{CONFIG["ruby_install_name"]} -RM = $(RUBY) -rftools -e 'File::rm_f(*ARGV.map{|x|Dir[x]}.flatten.uniq)' +RM = $(RUBY) -rftools -e "File::rm_f(*ARGV.map{|x|Dir[x]}.flatten.uniq)" EXEEXT = #{CONFIG["EXEEXT"]} |