summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-07 06:37:44 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-07 06:37:44 +0000
commitf2ba23ace5a3cedf0f0c8b132d62e143afe90808 (patch)
tree8c0ae90f2e28a3aab67cb66727357ae0af5a3ff6 /lib
parent557a00f1aa531fb480a326952365eef0fab611bd (diff)
mkmf.rb: fix for ODE make
* lib/mkmf.rb (create_makefile): get rid of placing @ at the beginning of replacement, which is the loop expansion mechanism from the OSF Development Environment (ODE) make. fix failures with bmake by r53448. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53450 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/mkmf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index 9c1292b8ce..ead6ecbefd 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -2375,7 +2375,7 @@ static: #{$extmk && !$static ? "all" : "$(STATIC_LIB)#{!$extmk ? " install-rb" :
if $nmake
mfile.print "!if \"$(Q)\" == \"@\"\n\t@#{q} || \\\n!endif\n\t"
else
- mfile.print "\t$(Q:@=@#{q} || )"
+ mfile.print "\t$(Q1:0=@#{q} || )"
end
mfile.print "$(ECHO:@=) installing#{sfx.sub(/^-/, " ")} #{target} libraries\n"
end