aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-23 14:18:39 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-09-23 14:18:39 +0000
commitd6731c2e6b97bf6a31169746face99e5647d374e (patch)
treeed9b1829846dddadc671994d180db86af8b15902
parent116b3c8ac38dc34ee596ef319d39aabf60faa5a2 (diff)
downloadruby-d6731c2e6b97bf6a31169746face99e5647d374e.tar.gz
zlib: fix directory [ci skip]
* ext/zlib/extconf.rb: fix directory to install zlib library. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56219 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ext/zlib/extconf.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/extconf.rb b/ext/zlib/extconf.rb
index 71bcc577d1..c3035e37b5 100644
--- a/ext/zlib/extconf.rb
+++ b/ext/zlib/extconf.rb
@@ -85,7 +85,7 @@ if have_zlib
conf << "\t$(MAKE) -f $(ZSRC)/win32/Makefile.#{$nmake ? 'msc' : 'gcc'} TOP=$(ZSRC) $@\n"
conf << "install-so: $(topdir)/#{dll}"
conf << "$(topdir)/#{dll}: $(ZIMPLIB)\n"
- conf << "\t$(Q) $(COPY) #{dll} $(BINDIR)\n"
+ conf << "\t$(Q) $(COPY) #{dll} $(@D)\n"
end
end
conf