Commit 0c462a82 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

dependencies: check for awk

parent 4098f22e
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -232,6 +232,18 @@ if [ ! -z "$CXXCOMPILER" ] ; then
	echo "C++ compiler version '$CXXCOMPILER_VERSION':			Ok"
fi

#############################################################
#
# check build system 'awk'
#
#############################################################
if ! which awk > /dev/null ; then
	echo "awk installed:		    FALSE"
	/bin/echo -e "\n\nYou must install 'awk' on your build machine\n";
	exit 1;
fi;
echo "awk installed:					Ok"

#############################################################
#
# check build system 'bison'