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

* 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
This commit is contained in:
nobu 2009-11-30 07:57:47 +00:00
parent 7b5ea0ec2f
commit 53e884f32d
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon Nov 30 16:57:45 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/extmk.rb (command_output): $makeflags are already quoted.
Mon Nov 30 16:54:22 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in, win32/Makefile.sub (EXECUTABLE_EXTS): moved from

View file

@ -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/