1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/extmk.rb: quotes arguments with spaces always.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@23126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-04-03 03:46:22 +00:00
parent 9aecc028a3
commit 31c1ebc6b5
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Fri Apr 3 12:46:19 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/extmk.rb: quotes arguments with spaces always.
Fri Apr 3 12:43:14 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* common.mk (main): passes $(MAKE) to mkmain_cmd

View file

@ -575,7 +575,7 @@ if $nmake == ?b
end
if $command_output
message = "echo #{message}"
cmd = [$make, *sysquote($makeflags)].join(' ')
cmd = $makeflags.quote.join(' ')
open($command_output, 'wb') do |f|
case $command_output
when /\.sh\z/