echo ""
echo "Checking build system dependencies:"
-
+export LC_ALL=C
#############################################################
#
# check build system 'gcc'
#
#############################################################
-COMPILER=$(which $HOSTCC)
+COMPILER=$(which $HOSTCC 2> /dev/null)
if [ -z "$COMPILER" ] ; then
COMPILER=$(which cc)
fi;
# check for host CXX
-CXXCOMPILER=$(which $HOSTCXX)
+CXXCOMPILER=$(which $HOSTCXX 2> /dev/null)
if [ -z "$CXXCOMPILER" ] ; then
CXXCOMPILER=$(which c++)
fi