mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/mkmf.rb (create_makefile): support for parallel make. a
patch from Takuto Matsuu at [ruby-dev:38220]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23114 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
48d18d3783
commit
72c161bb55
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Apr 1 19:46:46 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb (create_makefile): support for parallel make. a
|
||||
patch from Takuto Matsuu at [ruby-dev:38220].
|
||||
|
||||
Wed Apr 1 19:39:25 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* configure.in (LIBRUBY_LDSHARED): use $(CC) instead of cc.
|
||||
|
|
|
@ -1710,7 +1710,7 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""}
|
|||
mfile.print "\t@-$(RM) #{fseprepl[dest]}\n"
|
||||
mfile.print "\t@-$(RMDIRS) #{fseprepl[dir]}\n"
|
||||
else
|
||||
mfile.print "#{dest}: #{f}\n"
|
||||
mfile.print "#{dest}: #{dir} #{f}\n"
|
||||
mfile.print "\t$(INSTALL_PROG) #{fseprepl[f]} #{fseprepl[dir]}\n"
|
||||
if defined?($installed_list)
|
||||
mfile.print "\t@echo #{dir}/#{File.basename(f)}>>$(INSTALLED_LIST)\n"
|
||||
|
|
Loading…
Reference in a new issue