summaryrefslogtreecommitdiff
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
commit53e884f32d47739185fc98ab0f150394bd906beb (patch)
treefa3b0f7b6de686b27ae52d54a1f43bfe4d7a63ba /ext
parent7b5ea0ec2f6c4f016e14cf6b61544f9e58d07beb (diff)
* ext/extmk.rb (command_output): $makeflags are already quoted.
git-svn-id: svn+ssh://ci.ruby-lang.org/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 30de287cd8..a94bbfc449 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/