summaryrefslogtreecommitdiff
path: root/lib/mkmf.rb
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-12 06:28:23 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-02-12 06:28:23 +0000
commita10ded3ba0f6da6b4f881cd23858aef3d9eb5f29 (patch)
tree463ad4ea26443ca63f2cb58844b03531b756282a /lib/mkmf.rb
parent40d8d38909fe15a96887f4097d95d7323fc93fb7 (diff)
* bootstraptest/runner.rb, bootstraptest/test_method.rb, enc/depend,
instruby.rb, lib/mkmf.rb, lib/test/unit/util/procwrapper.rb, mkconfig.rb, sample/test.rb, template/vm.inc.tmpl, test/ruby/test_stringchar.rb: fixes arround String#gsub. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15443 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/mkmf.rb')
-rw-r--r--lib/mkmf.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index 45bf90872d..9629a648ab 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -1512,10 +1512,10 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""}
f.gsub!("/", sep)
dir.gsub!("/", sep)
sep = ":/="+sep
- f.gsub!(/(\$\(\w+)(\))/) {$1+sep+$2}
- f.gsub!(/(\$\{\w+)(\})/) {$1+sep+$2}
- dir.gsub!(/(\$\(\w+)(\))/) {$1+sep+$2}
- dir.gsub!(/(\$\{\w+)(\})/) {$1+sep+$2}
+ f.gsub!(/(\$\(\w+)(\))/, "\\1#{sep}\\2")
+ f.gsub!(/(\$\{\w+)(\})/, "\\1#{sep}\\2")
+ dir.gsub!(/(\$\(\w+)(\))/, "\\1#{sep}\\2")
+ dir.gsub!(/(\$\{\w+)(\})/, "\\1#{sep}\\2")
end
mfile.print "\t$(INSTALL_PROG) #{f} #{dir}\n"
if defined?($installed_list)
@@ -1546,8 +1546,8 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""}
if sep
f = f.gsub("/", sep)
sep = ":/="+sep
- f = f.gsub(/(\$\(\w+)(\))/) {$1+sep+$2}
- f = f.gsub(/(\$\{\w+)(\})/) {$1+sep+$2}
+ f = f.gsub(/(\$\(\w+)(\))/, "\\1#{sep}\\2")
+ f = f.gsub(/(\$\{\w+)(\})/, "\\1#{sep}\\2")
else
sep = ""
end