diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-12-28 05:00:47 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-12-28 05:00:47 +0000 |
| commit | 31b9d2870e10dd0de788f9cfbf2d759cf3cbb8bf (patch) | |
| tree | 571574af57859810d146f28177c240f1fe04e4f7 /ext/configsub.rb | |
| parent | 6202f851c777a8327491ddca8f2df39b20ff9b5a (diff) | |
| download | ruby-31b9d2870e10dd0de788f9cfbf2d759cf3cbb8bf.tar.gz ruby-31b9d2870e10dd0de788f9cfbf2d759cf3cbb8bf.tar.xz ruby-31b9d2870e10dd0de788f9cfbf2d759cf3cbb8bf.zip | |
changes from personal modifies -- matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1084 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/configsub.rb')
| -rw-r--r-- | ext/configsub.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/configsub.rb b/ext/configsub.rb index 315cdaf86..0dc525515 100644 --- a/ext/configsub.rb +++ b/ext/configsub.rb @@ -10,9 +10,9 @@ BEGIN { CONFIG['TEENY'] = $3 end - File.foreach($config || "config.status") do |$_| - next if /^#/ - if /^s%@(\w+)@%(.*)%g/ + File.foreach($config || "config.status") do |line| + next if /^#/ =~ line + if /^s%@(\w+)@%(.*)%g/ =~ line name = $1 val = $2 || "" next if /^(INSTALL|DEFS|configure_input|srcdir)$/ =~ name |
