diff options
author | Roland McGrath <roland@hack.frob.com> | 2013-01-09 16:05:32 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2013-01-09 16:05:32 -0800 |
commit | ad98e30c90f518cbcd896b1fe9e45f2318102db3 (patch) | |
tree | 3a9c1bcda815da4802af4a042756edfd06dfc82f /posix/Makefile | |
parent | 232f7002929098127125289783d4ffcb9c53be97 (diff) | |
download | glibc-ad98e30c90f518cbcd896b1fe9e45f2318102db3.tar.gz glibc-ad98e30c90f518cbcd896b1fe9e45f2318102db3.tar.xz glibc-ad98e30c90f518cbcd896b1fe9e45f2318102db3.zip |
Force getconf.speclist to be generated in the others pass.
Diffstat (limited to 'posix/Makefile')
-rw-r--r-- | posix/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
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 |