* ext/extmk.rb.in (arg_config): should use Shellwords::shellwords.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2002-03-26 10:46:30 +00:00
parent b427d9e859
commit ce0de3f67b
2 changed files with 4 additions and 2 deletions

View File

@ -2,6 +2,8 @@ Tue Mar 26 18:45:15 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* configure.in (FILE_READPTR): check bufread instead of bufend
for uClibc.
* ext/extmk.rb.in (arg_config): should use Shellwords::shellwords.
Tue Mar 26 01:56:33 2002 Yukihiro Matsumoto <matz@ruby-lang.org>

View File

@ -41,6 +41,7 @@ $:.replace [$topdir, $top_srcdir, $top_srcdir+"/lib", "."]
require 'rbconfig.rb'
require 'find'
require 'ftools'
require 'shellwords'
def rm_f(*files)
targets = []
@ -296,8 +297,7 @@ def arg_config(config, default=nil)
if /mswin32|mingw/ =~ RUBY_PLATFORM and ENV["CONFIGURE_ARGS"]
args << " " << ENV["CONFIGURE_ARGS"]
end
for arg in args.split
arg.gsub! /^'|'$/, ''
for arg in Shellwords::shellwords(args)
next unless /^--/ =~ arg
arg, val = arg.split('=', 2)
$configure_args[arg] = val || true