patches/uClibc/0.9.29/140-bits_sysnum_h.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jul 28 21:32:33 2008 +0000 (2008-07-28)
changeset 747 d3e603e7c17c
parent 108 patches/uClibc/0.9.29/400-bits_sysnum_h.patch@69407950a2a2
permissions -rw-r--r--
Fourth step at renaming patches: renumber all patches with a 10-step.
     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