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 /ext | |
| 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 'ext')
| -rw-r--r-- | ext/extmk.rb.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb.in b/ext/extmk.rb.in index 53cb46ae1..99ad86d97 100644 --- a/ext/extmk.rb.in +++ b/ext/extmk.rb.in @@ -473,7 +473,7 @@ TARGET = #{target} DLLIB = $(TARGET).#{$static ? $LIBEXT : "@DLEXT@"} RUBY = #{ruby_interpreter} -I$(topdir) -I$(hdrdir)/lib -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 = @EXEEXT@ |
