mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-05 14:09:53 +03:00
dependencies: check for awk
This commit is contained in:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user