patches/uClibc/0.9.29/400-bits_sysnum_h.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jul 26 15:12:33 2008 +0000 (2008-07-26)
branch1.2
changeset 730 823ac8f8e9fd
permissions -rw-r--r--
Backport #849 from trunk:
Remove garbage files left behind by downloads from sourceforge.net.

/branches/1.2/scripts/build/debug/500-strace.sh | 4 4 0 0 ++++
/branches/1.2/scripts/build/debug/200-duma.sh | 5 4 1 0 ++++-
2 files changed, 8 insertions(+), 1 deletion(-)
     1 YEM-20070519:
     2 bits/sysnum.h needs a cross compiler to be built. Fortunately, this
     3 header is not needed to build gcc. Move generation of this header.
     4 
     5 Index: uClibc/Makefile.in
     6 ===================================================================
     7 --- uClibc/Makefile.in	(revision 18651)
     8 +++ uClibc/Makefile.in	(working copy)
     9 @@ -91,6 +91,11 @@
    10  			$(LN) -fs $$i .; \
    11  		done; \
    12  	fi
    13 +ifeq ($(UCLIBC_HAS_LOCALE),y)
    14 +	$(MAKE) locale_headers
    15 +endif
    16 +
    17 +pregen: headers
    18  	$(Q)\
    19  	set -e; \
    20  	cd $(top_builddir); \
    21 @@ -102,12 +107,7 @@
    22  	else \
    23  		mv -f $$tmp include/bits/sysnum.h; \
    24  	fi
    25 -ifeq ($(UCLIBC_HAS_LOCALE),y)
    26 -	$(MAKE) locale_headers
    27 -endif
    28  
    29 -pregen: headers
    30 -
    31  install: install_runtime install_dev
    32  
    33