summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-09-23 17:08:09 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2007-09-23 17:08:09 (GMT)
commitb1e693e40281dc8c451e8892dfcdf55d78a4ade3 (patch)
treec276bc44f23b42895b459efbf2597f4bef378819 /scripts
parent3ad6464ffe38eb15591b404e0749aa89f4074fd1 (diff)
Renamed all patches file names so that locales are now irrelevant to sort the files.
Removed the locale check as it is now irrelevant. Removed the experimental binutils 2.17.50.0.xx: 2.18 is here now.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/crosstool.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/scripts/crosstool.sh b/scripts/crosstool.sh
index 5a12fd1..779bf90 100755
--- a/scripts/crosstool.sh
+++ b/scripts/crosstool.sh
@@ -42,22 +42,6 @@ CT_DoLog DEBUG "Unsetting and unexporting MAKEFLAGS"
unset MAKEFLAGS
export MAKEFLAGS
-# Enable known ordering of files in directory listings:
-CT_Test "crosstool-NG might not work as expected with LANG=\"${LANG}\"" -n "${LANG}"
-case "${LC_COLLATE},${LC_ALL}" in
- # These four combinations are known to sort files in the correct order:
- fr_FR*,) ;;
- en_US*,) ;;
- *,fr_FR*) ;;
- *,en_US*) ;;
- # Anything else is destined to be borked if not gracefuly handled:
- *) CT_DoLog WARN "Either LC_COLLATE=\"${LC_COLLATE}\" or LC_ALL=\"${LC_ALL}\" is not supported."
- export LC_ALL=`locale -a |egrep "^(fr_FR|en_US)" |head -n 1`
- CT_TestOrAbort "Neither en_US* nor fr_FR* locales found on your system." -n "${LC_ALL}"
- CT_DoLog WARN "Forcing to known working LC_ALL=\"${LC_ALL}\"."
- ;;
-esac
-
# Other environment sanity checks
CT_TestAndAbort "Don't set LD_LIBRARY_PATH. It screws up the build." -n "${LD_LIBRARY_PATH}"
CT_TestAndAbort "Don't set CFLAGS. It screws up the build." -n "${CFLAGS}"