scripts/wrapper.in
author Johannes Stezenbach <js@sig21.net>
Thu Jul 29 19:30:37 2010 +0200 (2010-07-29)
branch1.7
changeset 2047 ace1d90c9b15
parent 1402 146c62142e1b
child 1960 8307ceabe5c0
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 #!/bin/sh
     2 
     3 canonicalizedname=$(readlink -nm "${0}")
     4 dirname="$(dirname "${canonicalizedname}")"
     5 basename="$(basename "${canonicalizedname}")"
     6 
     7 ld_lib_path="$(dirname "${dirname}")/lib"
     8 
     9 case ":${LD_LIBRARY_PATH}:" in
    10     *":${ld_lib_path}:"*)   ;;
    11     *)  LD_LIBRARY_PATH="${ld_lib_path}${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}";;
    12 esac
    13 
    14 export LD_LIBRARY_PATH
    15 exec "${dirname}/.${basename}" "$@"