summaryrefslogtreecommitdiffstats
path: root/ext/configsub.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-20 16:04:08 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-20 16:04:08 +0000
commite3041e404555ec613d2974018c92b1e468384765 (patch)
tree22d668471f41a378f4dd5fe06a8f4c1f93792ee5 /ext/configsub.rb
parentce332a9c68b60516869b54b7a1e1de40122b31e0 (diff)
downloadruby-e3041e404555ec613d2974018c92b1e468384765.tar.gz
ruby-e3041e404555ec613d2974018c92b1e468384765.tar.xz
ruby-e3041e404555ec613d2974018c92b1e468384765.zip
* ext/configsub.rb: latest autoconf style support.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/configsub.rb')
-rw-r--r--ext/configsub.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/configsub.rb b/ext/configsub.rb
index 679078ff1..47689d7ec 100644
--- a/ext/configsub.rb
+++ b/ext/configsub.rb
@@ -12,7 +12,7 @@ BEGIN {
File.foreach($config || "config.status") do |line|
next if /^#/ =~ line
- if /^s[%,]@(\w+)@[%,](.*)[%,]g/ =~ line
+ if /^s[%,]@(\w+)@[%,](.*)[%,][g;]/ =~ line
name = $1
val = $2 || ""
next if /^(INSTALL|DEFS|configure_input|srcdir)$/ =~ name