mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 13:04:13 +02:00
mkmf.rb: fix ranlib argument
* lib/mkmf.rb (create_makefile): ranlib on static library, not DLLIB. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43275 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c4b6e96748
commit
85e59cc5a9
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-10-14 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb (create_makefile): ranlib on static library, not DLLIB.
|
||||
|
||||
2013-10-13 Andrew Grimm <andrew.j.grimm@gmail.com>
|
||||
|
||||
* vsnprintf.c: Fix spelling from compliment to complement.
|
||||
|
|
|
@ -2357,7 +2357,7 @@ site-install-rb: install-rb
|
|||
mfile.print "$(ECHO) linking static-library $(@#{rsep})\n\t$(Q) "
|
||||
mfile.print "$(AR) #{config_string('ARFLAGS') || 'cru '}$@ $(OBJS)"
|
||||
config_string('RANLIB') do |ranlib|
|
||||
mfile.print "\n\t-$(Q)#{ranlib} $(DLLIB) 2> /dev/null || true"
|
||||
mfile.print "\n\t-$(Q)#{ranlib} $(@) 2> /dev/null || true"
|
||||
end
|
||||
end
|
||||
mfile.print "\n\n"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue