From cda8b4700f2b5fc1dd223e09bbca7d4431ad2dda Mon Sep 17 00:00:00 2001 From: ocean Date: Mon, 28 Nov 2005 00:22:53 +0000 Subject: * lib/mkmf.rb (create_makefile): should not change sodir with dir.gsub!. (bccwin32 failed to install third party exntesions) [ruby-dev:27834] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9623 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 6150b59c9..76146ffd1 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -1100,7 +1100,7 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""} mfile.print CLEANINGS dirs = [] mfile.print "install: install-so install-rb\n\n" - sodir = dir = "$(RUBYARCHDIR)" + sodir = (dir = "$(RUBYARCHDIR)").dup mfile.print("install-so: #{dir}\n") if target f = "$(DLLIB)" -- cgit