diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-09-23 14:18:39 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-09-23 14:18:39 +0000 |
commit | f5f8f3ce3788266aa5273cdaf885c29a4e8bf300 (patch) | |
tree | ed9b1829846dddadc671994d180db86af8b15902 | |
parent | 9d5bc13fdbb0541e078d0ffd89036052d9e8f4d8 (diff) |
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.rb | 2 |
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 |