浏览代码

dependencies: simplistic SHELL = bash check

Peter Korsgaard 16 年之前
父节点
当前提交
160d559b81
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. 12 0
      toolchain/dependencies/dependencies.sh

+ 12 - 0
toolchain/dependencies/dependencies.sh

@@ -246,6 +246,18 @@ if ! which awk > /dev/null ; then
 fi;
 echo "awk installed:					Ok"
 
+#############################################################
+#
+# check build system 'bash'
+#
+#############################################################
+if ! $SHELL --version 2>&1 | grep -q '^GNU bash'; then
+	echo "bash installed:		    FALSE"
+	/bin/echo -e "\n\nYou must install 'bash' on your build machine\n";
+	exit 1;
+fi;
+echo "bash installed:					Ok"
+
 #############################################################
 #
 # check build system 'bison'