diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-11-17 01:49:19 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-11-17 01:49:19 +0000 |
commit | 531f1ae0a79b9c3a91654750b11d25b256d7215f (patch) | |
tree | 7c038bf7253a09342f858a9a002fc62b74cfd735 /posix/Makefile | |
parent | a93f9cbc27a00f1bfe64b5ced19b8fde3bdbb1ea (diff) | |
download | glibc-531f1ae0a79b9c3a91654750b11d25b256d7215f.zip glibc-531f1ae0a79b9c3a91654750b11d25b256d7215f.tar.gz glibc-531f1ae0a79b9c3a91654750b11d25b256d7215f.tar.bz2 |
Generate /usr/libexec/getconf files when cross-compiling.
Diffstat (limited to 'posix/Makefile')
-rw-r--r-- | posix/Makefile | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/posix/Makefile b/posix/Makefile index 80fbf20..5e0e886 100644 --- a/posix/Makefile +++ b/posix/Makefile @@ -298,15 +298,7 @@ $(inst_libexecdir)/getconf: $(inst_bindir)/getconf \ mv -f $@/$$spec.new $@/$$spec; \ done < $(objpfx)getconf.speclist -$(objpfx)getconf.speclist: $(objpfx)getconf -ifeq (no,$(cross-compiling)) - LC_ALL=C GETCONF_DIR=/dev/null \ - $(run-program-prefix) $< _POSIX_V7_WIDTH_RESTRICTED_ENVS > $@.new - LC_ALL=C GETCONF_DIR=/dev/null \ - $(run-program-prefix) $< _POSIX_V6_WIDTH_RESTRICTED_ENVS >> $@.new - LC_ALL=C GETCONF_DIR=/dev/null \ - $(run-program-prefix) $< _XBS5_WIDTH_RESTRICTED_ENVS >> $@.new -else - > $@.new -endif +$(objpfx)getconf.speclist: getconf-speclist.c posix-envs.def + $(compile.c) -E -o - \ + | sed -n -e '/@@@PRESENT_/s/@@@PRESENT_//p' > $@.new mv -f $@.new $@ |