# check build system 'make'
#
#############################################################
-MAKE=$(which make)
+MAKE=$(which make 2> /dev/null)
if [ -z "$MAKE" ] ; then
echo "make installed: FALSE"
/bin/echo -e "\n\nYou must install 'make' on your build machine\n";
#############################################################
COMPILER=$(which $HOSTCC 2> /dev/null)
if [ -z "$COMPILER" ] ; then
- COMPILER=$(which cc)
+ COMPILER=$(which cc 2> /dev/null)
fi;
if [ -z "$COMPILER" ] ; then
echo "C Compiler installed: FALSE"
# check for host CXX
CXXCOMPILER=$(which $HOSTCXX 2> /dev/null)
if [ -z "$CXXCOMPILER" ] ; then
- CXXCOMPILER=$(which c++)
+ CXXCOMPILER=$(which c++ 2> /dev/null)
fi
if [ -z "$CXXCOMPILER" ] ; then
echo "C++ Compiler installed: FALSE"