summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-30 07:57:47 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-11-30 07:57:47 +0000
commit13a9126e6529587de91d38a7ddf7106ab6dacfa0 (patch)
tree9b70fe065eb9cceccc151d4ce059ea2dea480e77
parent09d3587650488063f06647bd7269fcde15078d94 (diff)
* ext/extmk.rb (command_output): $makeflags are already quoted.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@25965 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--ext/extmk.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4be92bf0ca..fad55f2c7b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon Nov 30 16:57:45 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * ext/extmk.rb (command_output): $makeflags are already quoted.
+
Mon Nov 30 16:54:22 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in, win32/Makefile.sub (EXECUTABLE_EXTS): moved from
diff --git a/ext/extmk.rb b/ext/extmk.rb
index a18cd38af0..51569c4f97 100644
--- a/ext/extmk.rb
+++ b/ext/extmk.rb
@@ -575,7 +575,7 @@ if $nmake == ?b
end
if $command_output
message = "echo #{message}"
- cmd = $makeflags.quote.join(' ')
+ cmd = $makeflags.join(' ')
open($command_output, 'wb') do |f|
case $command_output
when /\.sh\z/