patches/uClibc/0.9.29/140-bits_sysnum_h.patch
author Johannes Stezenbach <js@sig21.net>
Thu Jul 29 19:30:37 2010 +0200 (2010-07-29)
branch1.7
changeset 2047 ace1d90c9b15
parent 108 69407950a2a2
permissions -rw-r--r--
scripts: remove . from $PATH

Add CT_SanitizePath function which removes entries referring to ., /tmp
and non-existing directories from $PATH, and call it early in the
build script.

If . is in PATH, gcc-4.4.4 build breaks:

[ALL ] checking what assembler to use...
/tmp/build/targets/arm-unknown-linux-uclibcgnueabi/build/gcc-core-static/arm-unknown-linux-uclibcgnueabi/bin/as
...
[ALL ] config.status: creating as

i.e. "as" is supposed to be the arm-unknown-linux-uclibcgnueabi cross assembler,
but config.status creates a local "as" script which is calling the
host assembler.

Signed-off-by: Johannes Stezenbach <js@sig21.net>
[Yann E. MORIN: style fixes + explanations]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
(transplanted from 20dd8cef1c8adff0aa3e78ae6d7acfbc45ed5a83)
     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