diff options
| author | Khem Raj <kraj@mvista.com> | 2008-09-18 04:38:14 +0000 |
|---|---|---|
| committer | Khem Raj <kraj@mvista.com> | 2008-09-18 04:38:14 +0000 |
| commit | f348f8d207eabd8f29ad78d76472be28244c2194 (patch) | |
| tree | a6d86fbb72afbf186d612ad0eb6a63d7185fbb40 | |
| parent | 7410da5e36a173772e7fd831933ea946759e4996 (diff) | |
| download | uClibc-alpine-f348f8d207eabd8f29ad78d76472be28244c2194.tar.bz2 uClibc-alpine-f348f8d207eabd8f29ad78d76472be28244c2194.tar.xz | |
Try not to use ">&" dash shell does not like it.
| -rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index cd4e995f8..58811c5e0 100644 --- a/Makefile.in +++ b/Makefile.in @@ -141,7 +141,7 @@ pregen: include/bits/sysnum.h headers $(Q)$(if $(UCLIBC_HAS_LOCALE),$(MAKE) -C extra/locale locale_headers) ifeq ($(UCLIBC_HAS_THREADS_NATIVE),y) $(Q)$(MAKE) nptl_headers -ifeq ($(shell $(CC) --help >& /dev/null && echo yes),yes) +ifeq ($(shell $(CC) --help 2>&1 > /dev/null && echo yes),yes) $(Q)$(MAKE) nptl_arch_headers $(Q)$(MAKE) nptl_linux_headers endif |
