diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-03-25 10:37:30 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2002-03-25 10:37:30 +0000 |
| commit | b49bbf9be333b0797355233243e5bf0388be0cfd (patch) | |
| tree | ff75a50f42c5a8c2de44eed6f729975efba21e1f /ext | |
| parent | 1699691976697357327e4bcffc3d598d8bb3f36d (diff) | |
| download | ruby-b49bbf9be333b0797355233243e5bf0388be0cfd.tar.gz ruby-b49bbf9be333b0797355233243e5bf0388be0cfd.tar.xz ruby-b49bbf9be333b0797355233243e5bf0388be0cfd.zip | |
* ext/extmk.rb.in (arg_config): get rid of single quotes for autoconf 2.53.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2275 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/extmk.rb.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/extmk.rb.in b/ext/extmk.rb.in index 7e1a1b2fb..21166059b 100644 --- a/ext/extmk.rb.in +++ b/ext/extmk.rb.in @@ -297,6 +297,7 @@ def arg_config(config, default=nil) args << " " << ENV["CONFIGURE_ARGS"] end for arg in args.split + arg.gsub! /^'|'$/, '' next unless /^--/ =~ arg arg, val = arg.split('=', 2) $configure_args[arg] = val || true |
