summaryrefslogtreecommitdiff
path: root/ext
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
commit952b46a617236fa380f7871230efbd711b29a0b2 (patch)
tree22d668471f41a378f4dd5fe06a8f4c1f93792ee5 /ext
parent999971b07c1871710064b5e4ee72cf1afca2ef55 (diff)
* ext/configsub.rb: latest autoconf style support.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2241 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/configsub.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/configsub.rb b/ext/configsub.rb
index 679078ff11..47689d7ec0 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