diff options
author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-11-28 00:22:53 +0000 |
---|---|---|
committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-11-28 00:22:53 +0000 |
commit | 83d7c20a3bdcea42b7da60e4a46e4428e908f71b (patch) | |
tree | 53685b23925ea4e21ca63517dd00fc34ab06b670 | |
parent | 6b1cbe63e43743da820bf2375673872ddba69eb4 (diff) | |
download | ruby-83d7c20a3bdcea42b7da60e4a46e4428e908f71b.tar.gz ruby-83d7c20a3bdcea42b7da60e4a46e4428e908f71b.tar.xz ruby-83d7c20a3bdcea42b7da60e4a46e4428e908f71b.zip |
* 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/trunk@9623 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/mkmf.rb | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +Mon Nov 28 09:15:50 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp> + + * lib/mkmf.rb (create_makefile): should not change sodir with + dir.gsub!. (bccwin32 failed to install third party exntesions) + [ruby-dev:27834] + Sun Nov 27 05:37:20 2005 Tanaka Akira <akr@m17n.org> * lib/pathname.rb: use File.basename to decompose pathnames. diff --git a/lib/mkmf.rb b/lib/mkmf.rb index 4365cbe57..5afe5017d 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -1102,7 +1102,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)" |