summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-03 03:45:58 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-04-03 03:45:58 +0000
commit2b7279ba5fce23a653323423309cfa4fc1173e06 (patch)
treeb97fec259c5a3c090491bfb26efec35f914bde71 /ext
parent12bbcbb3631e91224737d233e80fbe92b9ec5652 (diff)
* ext/extmk.rb: quotes arguments with spaces always.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23125 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 10cb056302..f69b57b112 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 = sysquote($makeflags).join(' ')
+ cmd = $makeflags.quote.join(' ')
open($command_output, 'wb') do |f|
case $command_output
when /\.sh\z/