diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-04-03 03:45:58 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-04-03 03:45:58 +0000 |
| commit | a8881b1cd03406b2483cea0a4acfaf36dd5e3428 (patch) | |
| tree | b97fec259c5a3c090491bfb26efec35f914bde71 /ext | |
| parent | c731724d1532d0caff5205ac846007d393ac5897 (diff) | |
| download | ruby-a8881b1cd03406b2483cea0a4acfaf36dd5e3428.tar.gz ruby-a8881b1cd03406b2483cea0a4acfaf36dd5e3428.tar.xz ruby-a8881b1cd03406b2483cea0a4acfaf36dd5e3428.zip | |
* ext/extmk.rb: quotes arguments with spaces always.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@23125 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/extmk.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb index 10cb05630..f69b57b11 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/ |
