- ignore errors when looking at hostcc and hostcxx
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Wed, 21 Mar 2007 18:15:02 +0000 (18:15 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Wed, 21 Mar 2007 18:15:02 +0000 (18:15 -0000)
toolchain/dependencies/dependencies.sh

index f19de1ca04684e0b3e2d37555dcf0b94cd30ea30..f0ac1160e5726092f31ed5fc4454714a5658962c 100755 (executable)
@@ -4,7 +4,7 @@
 
 echo ""
 echo "Checking build system dependencies:"
-
+export LC_ALL=C
 
 #############################################################
 #
@@ -150,7 +150,7 @@ echo "GNU make version '$MAKE_VERSION':                     Ok"
 # check build system 'gcc'
 #
 #############################################################
-COMPILER=$(which $HOSTCC)
+COMPILER=$(which $HOSTCC 2> /dev/null)
 if [ -z "$COMPILER" ] ; then
        COMPILER=$(which cc)
 fi;
@@ -177,7 +177,7 @@ echo "C compiler version '$COMPILER_VERSION':                       Ok"
 
 
 # check for host CXX
-CXXCOMPILER=$(which $HOSTCXX)
+CXXCOMPILER=$(which $HOSTCXX 2> /dev/null)
 if [ -z "$CXXCOMPILER" ] ; then
        CXXCOMPILER=$(which c++)
 fi