summaryrefslogtreecommitdiffstats
path: root/ext
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
commit9ffff9547c70b5d4c821277915de52dd0df9f850 (patch)
treefa3b0f7b6de686b27ae52d54a1f43bfe4d7a63ba /ext
parent0ff5af080d0457364326d6948829b94c4c432aec (diff)
downloadruby-9ffff9547c70b5d4c821277915de52dd0df9f850.tar.gz
ruby-9ffff9547c70b5d4c821277915de52dd0df9f850.tar.xz
ruby-9ffff9547c70b5d4c821277915de52dd0df9f850.zip
* ext/extmk.rb (command_output): $makeflags are already quoted.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@25965 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/extmk.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb
index 30de287cd..a94bbfc44 100644
--- a/ext/extmk.rb
+++ b/ext/extmk.rb
@@ -570,7 +570,7 @@ $mflags.unshift("topdir=#$topdir")
ENV.delete("RUBYOPT")
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/