diff options
| author | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-11-03 23:16:52 +0000 |
|---|---|---|
| committer | knu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-11-03 23:16:52 +0000 |
| commit | 5e71748f393bc9eee345c588244624d2f79daef3 (patch) | |
| tree | ed9103326db689f0fd497ff812c8e6f04ad1aca6 /ext/extmk.rb | |
| parent | bd3c3feaa0413e0bf6fa58d5ac74ae8cf789c04d (diff) | |
| download | ruby-5e71748f393bc9eee345c588244624d2f79daef3.tar.gz ruby-5e71748f393bc9eee345c588244624d2f79daef3.tar.xz ruby-5e71748f393bc9eee345c588244624d2f79daef3.zip | |
Fix a bogon in the last commit. (reported by WATANABE Tetsuya in
[ruby-dev:18634])
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3023 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/extmk.rb')
| -rw-r--r-- | ext/extmk.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/extmk.rb b/ext/extmk.rb index 1df0b87cf..97310f841 100644 --- a/ext/extmk.rb +++ b/ext/extmk.rb @@ -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) |
