diff options
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | lib/mkmf.rb | 8 |
2 files changed, 11 insertions, 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 diff --git a/lib/mkmf.rb b/lib/mkmf.rb index d99209e2d..60859eeb8 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -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 |
