* lib/mkmf.rb (create_makefile): make object files depend on
extconf.h even if depend file exists. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11621 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
205f310c29
commit
f41d55aec8
@ -1,4 +1,4 @@
|
|||||||
Sat Feb 3 01:25:31 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Sat Feb 3 02:36:35 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* proc.c (yarv_proc_alloc): needs return.
|
* proc.c (yarv_proc_alloc): needs return.
|
||||||
|
|
||||||
@ -11,6 +11,9 @@ Sat Feb 3 01:25:31 2007 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
|||||||
|
|
||||||
* regenc.h: revert to before YARV.
|
* regenc.h: revert to before YARV.
|
||||||
|
|
||||||
|
* lib/mkmf.rb (create_makefile): make object files depend on
|
||||||
|
extconf.h even if depend file exists.
|
||||||
|
|
||||||
Fri Feb 2 23:39:42 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Fri Feb 2 23:39:42 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* common.mk (bin): add more dependency. a patch from Tadashi
|
* common.mk (bin): add more dependency. a patch from Tadashi
|
||||||
|
@ -1335,7 +1335,7 @@ site-install-rb: install-rb
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
sep = config_string('BUILD_FILE_SEPARATOR') {|sep| ":/=#{sep}" if sep != "/"} || ""
|
sep = config_string('BUILD_FILE_SEPARATOR') {|s| ":/=#{s}" if s != "/"} || ""
|
||||||
mfile.print "$(RUBYARCHDIR)/" if $extout
|
mfile.print "$(RUBYARCHDIR)/" if $extout
|
||||||
mfile.print "$(DLLIB): ", (makedef ? "$(DEFFILE) " : ""), "$(OBJS)\n"
|
mfile.print "$(DLLIB): ", (makedef ? "$(DEFFILE) " : ""), "$(OBJS)\n"
|
||||||
mfile.print "\t@-$(RM) $(@#{sep})\n"
|
mfile.print "\t@-$(RM) $(@#{sep})\n"
|
||||||
@ -1415,9 +1415,9 @@ site-install-rb: install-rb
|
|||||||
headers.each {|h| h.sub!(/.*/, &RULE_SUBST.method(:%))}
|
headers.each {|h| h.sub!(/.*/, &RULE_SUBST.method(:%))}
|
||||||
end
|
end
|
||||||
headers << $config_h if $config_h
|
headers << $config_h if $config_h
|
||||||
headers << "$(RUBY_EXTCONF_H)" if $extconf_h
|
|
||||||
mfile.print "$(OBJS): ", headers.join(' '), "\n"
|
mfile.print "$(OBJS): ", headers.join(' '), "\n"
|
||||||
end
|
end
|
||||||
|
mfile.print "\n$(OBJS): $(RUBY_EXTCONF_H)\n"
|
||||||
|
|
||||||
$makefile_created = true
|
$makefile_created = true
|
||||||
ensure
|
ensure
|
||||||
|
Loading…
x
Reference in New Issue
Block a user