From f2ba23ace5a3cedf0f0c8b132d62e143afe90808 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 7 Jan 2016 06:37:44 +0000 Subject: 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 --- lib/mkmf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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 -- cgit v1.2.3