mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-12 16:20:06 +00:00
Add dependency tracking for preconfigure files.
This commit is contained in:
parent
a222d91a13
commit
222d7f00a4
@ -1,3 +1,8 @@
|
|||||||
|
2013-03-08 Roland McGrath <roland@hack.frob.com>
|
||||||
|
|
||||||
|
* Makeconfig ($(common-objpfx)config.status): Depend on
|
||||||
|
sysdeps/*/preconfigure{,.in} too.
|
||||||
|
|
||||||
2013-03-08 Joseph Myers <joseph@codesourcery.com>
|
2013-03-08 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* malloc/malloc.h (__malloc_ptr_t): Remove macro.
|
* malloc/malloc.h (__malloc_ptr_t): Remove macro.
|
||||||
|
@ -90,10 +90,14 @@ $(common-objpfx)config.status: $(..)version.h $(..)configure \
|
|||||||
$(firstword $(wildcard \
|
$(firstword $(wildcard \
|
||||||
$(addprefix $(dir)/,configure configure.in))))) \
|
$(addprefix $(dir)/,configure configure.in))))) \
|
||||||
$(patsubst %.in,%,\
|
$(patsubst %.in,%,\
|
||||||
|
$(wildcard $(..)sysdeps/*/preconfigure $(..)sysdeps/*/preconfigure.in)) \
|
||||||
|
$(patsubst %.in,%,\
|
||||||
$(foreach add-on,$(add-ons),\
|
$(foreach add-on,$(add-ons),\
|
||||||
$(firstword $(wildcard \
|
$(firstword $(wildcard \
|
||||||
$(addprefix $(firstword $(filter /%,$(add-on)) $(..)$(add-on))/,\
|
$(addprefix $(firstword $(filter /%,$(add-on)) $(..)$(add-on))/,\
|
||||||
configure configure.in)))))
|
configure configure.in))) \
|
||||||
|
$(wildcard $(addprefix $(firstword $(filter /%,$(add-on)) $(..)$(add-on))/,\
|
||||||
|
sysdeps/*/preconfigure sysdeps/*/preconfigure.in))))
|
||||||
@cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
|
@cd $(@D); if test -f $(@F); then exec $(SHELL) $(@F) --recheck; else \
|
||||||
echo The GNU C library has not been configured. >&2; \
|
echo The GNU C library has not been configured. >&2; \
|
||||||
echo Run \`configure\' to configure it before building. >&2; \
|
echo Run \`configure\' to configure it before building. >&2; \
|
||||||
|
Loading…
Reference in New Issue
Block a user