aboutsummaryrefslogtreecommitdiffstats
path: root/lib/mkmf.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-09 09:07:42 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-09 09:07:42 +0000
commit624ae6837937edb369020a9dabdb2a9e8ee5ae6b (patch)
treea25d59bd43ae709e9cf406c4418f81cc285487d6 /lib/mkmf.rb
parentc27f8d5b3a939befbbb7d206195693835a8e0dcb (diff)
downloadruby-624ae6837937edb369020a9dabdb2a9e8ee5ae6b.tar.gz
* lib/mkmf.rb (create_makefile): prevent substitution of macro
definition. fixed: http://www.yotabanana.com/lab/20060624.html#p02 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10493 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/mkmf.rb')
-rw-r--r--lib/mkmf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index c72388ab6a..497a14424b 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -1248,7 +1248,7 @@ site-install-rb: install-rb
suffixes << m[1] << m[2]
implicit = [[m[1], m[2]], [m.post_match]]
next
- elsif RULE_SUBST and /\A[$\w][^#]*:/ =~ line
+ elsif RULE_SUBST and /\A(?!\s*\w+\s*=)[$\w][^#]*:/ =~ line
line.gsub!(%r"(?<=\s)(?!\.)([^$(){}+=:\s\/\\,]+)(?=\s|\z)") {|*m| RULE_SUBST % m}
end
depout << line