patches/uClibc/0.9.29/400-bits_sysnum_h.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat May 19 22:52:47 2007 +0000 (2007-05-19)
changeset 108 69407950a2a2
permissions -rw-r--r--
Add uClibc-0.9.29:
- associated patch set
- update the munging function to accomodate the new config variables
libfloat version was missing from the previous commit... :-(
Better handle the case where the sample directory already exist but isn't under revision control, and in case the destination file doesn't exist in the sample directory.
     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