diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | posix/Makefile | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index dac24e99ee..777ba4f00a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2013-01-09 Roland McGrath <roland@hack.frob.com> + * posix/Makefile (others): Depend on $(objpfx)getconf.speclist. + * misc/error.c (error_tail: ALLOCA_LIMIT): Remove unused macro. 2013-01-09 Siddhesh Poyarekar <siddhesh@redhat.com> diff --git a/posix/Makefile b/posix/Makefile index 179ad87285..ce98c596d0 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -302,3 +302,8 @@ $(objpfx)getconf.speclist: getconf-speclist.c posix-envs.def $(compile.c) -E -o - \ | sed -n -e '/@@@PRESENT_/s/@@@PRESENT_//p' > $@.new mv -f $@.new $@ + +# This file is only actually needed at install time. But forcing it to +# be built both makes it available for eyeball inspection and avoids the +# surprise of things that look like compilation being done by 'make install'. +others: $(objpfx)getconf.speclist |