diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-12-12 21:41:16 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2011-12-12 21:41:16 +0200 |
commit | 7a8183efcdf37a7e75c6af073e45b77bd0a3381d (patch) | |
tree | f3d6d7e97d3b5fe22a2d9f51b99e3b8b8e3560a8 | |
parent | c6c56296dc9378cc9cf66582ed94cd21228730c5 (diff) | |
download | crosstool-ng-7a8183efcdf37a7e75c6af073e45b77bd0a3381d.tar.gz crosstool-ng-7a8183efcdf37a7e75c6af073e45b77bd0a3381d.tar.bz2 crosstool-ng-7a8183efcdf37a7e75c6af073e45b77bd0a3381d.zip |
scripts: unset CONFIG_SITE
Some distributions (eg. openSUSE 12.1) systematically export
the CONFIG_SITE environment variable to point to a custom
script setting misc paths for ./configure.
This can, and does, break when cross-compiling for architectures
that are not supported by this script.
The simple workaround is to unset this variable.
NB: buildroot has a similar fix:
http://git.buildroot.org/buildroot/commit/?id=12c9f7dd6dee9c6029b4f9a12d6aac1516911ab4
Reported-by: Trevor Woerner <twoerner@gmail.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
-rw-r--r-- | scripts/crosstool-NG.sh.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/crosstool-NG.sh.in b/scripts/crosstool-NG.sh.in index 54217519..057559f2 100644 --- a/scripts/crosstool-NG.sh.in +++ b/scripts/crosstool-NG.sh.in @@ -41,6 +41,8 @@ CT_TestAndAbort "Don't set CFLAGS. It screws up the build." -n "${CFLAGS}" CT_TestAndAbort "Don't set CXXFLAGS. It screws up the build." -n "${CXXFLAGS}" CT_Test "GREP_OPTIONS screws up the build. Resetting." -n "${GREP_OPTIONS}" export GREP_OPTIONS= +# Workaround against openSUSE 12.1 that breaks ./configure for cross-compilation: +export CONFIG_SITE= # Some sanity checks on paths content for d in \ |