mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/mkmf.rb (create_makefile): lib files shoudn't depend on install
dir because if the dir is newer than lib files, lib files will be always copied. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15170 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ef3fdbca15
commit
385c5ffacc
2 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
Tue Jan 22 19:37:16 2008 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb (create_makefile): lib files shoudn't depend on install
|
||||
dir because if the dir is newer than lib files, lib files will be
|
||||
always copied.
|
||||
|
||||
Tue Jan 22 17:52:52 2008 Martin Duerst <duerst@it.aoyama.ac.jp>
|
||||
|
||||
* enc/trans/utf_16_32.c: Streamline parentheses, add more
|
||||
|
|
|
@ -1519,11 +1519,13 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""}
|
|||
unless dirs.include?(dir)
|
||||
dirs << dir
|
||||
mfile.print "pre-install-rb#{sfx}: #{dir}\n"
|
||||
end
|
||||
end if $nmake
|
||||
for f in files
|
||||
dest = "#{dir}/#{File.basename(f)}"
|
||||
mfile.print("install-rb#{sfx}: #{dest}\n")
|
||||
mfile.print("#{dest}: #{f} #{dir}\n\t$(#{$extout ? 'COPY' : 'INSTALL_DATA'}) ")
|
||||
mfile.print("#{dest}: #{f}\n")
|
||||
mfile.print("\t$(MAKEDIRS) $(@D)\n") unless $nmake
|
||||
mfile.print("\t$(#{$extout ? 'COPY' : 'INSTALL_DATA'}) ")
|
||||
sep = config_string('BUILD_FILE_SEPARATOR')
|
||||
if sep
|
||||
f = f.gsub("/", sep)
|
||||
|
@ -1541,7 +1543,7 @@ static: $(STATIC_LIB)#{$extout ? " install-rb" : ""}
|
|||
end
|
||||
end
|
||||
dirs.unshift(sodir) if target and !dirs.include?(sodir)
|
||||
dirs.each {|d| mfile.print "#{d}:\n\t$(MAKEDIRS) $@\n"}
|
||||
dirs.each {|d| mfile.print "#{d}:\n\t$(MAKEDIRS) $@\n"} if $nmake
|
||||
|
||||
mfile.print <<-SITEINSTALL
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue