mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix a bogon in the last commit. (reported by WATANABE Tetsuya in
[ruby-dev:18634]) git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3023 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cdce29bf0f
commit
6cff858589
1 changed files with 1 additions and 2 deletions
|
@ -99,8 +99,7 @@ getopts('', 'extstatic', 'make:', 'make-flags:')
|
|||
|
||||
$force_static = $OPT['extstatic']
|
||||
$make = $OPT['make'] || $make
|
||||
$mflags = $OPT['make-flags'] || ""
|
||||
$mflags = Shellwords.shellwords(mflags)
|
||||
$mflags = Shellwords.shellwords($OPT['make-flags'] || "")
|
||||
|
||||
if mflags = ENV["MAKEFLAGS"]
|
||||
mflags, = mflags.split(nil, 2)
|
||||
|
|
Loading…
Add table
Reference in a new issue