- fix typo in version check
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Tue, 5 Jun 2007 07:38:07 +0000 (07:38 -0000)
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Tue, 5 Jun 2007 07:38:07 +0000 (07:38 -0000)
toolchain/dependencies/dependencies.sh

index 2996081e33af56af315eff13622316a38247850f..ec005d8a2100b3c43af360d1a8cefc9e1dd279d9 100755 (executable)
@@ -137,7 +137,7 @@ if [ -z "$MAKE_VERSION" ] ; then
 fi;
 MAKE_MAJOR=$(echo $MAKE_VERSION | $XSED -e "s/\..*//g")
 MAKE_MINOR=$(echo $MAKE_VERSION | $XSED -e "s/^$MAKE_MAJOR\.//g" -e "s/\..*//g" -e "s/[a-zA-Z].*//g")
-if [ $MAKE_MAJOR -lt 3 -o $MAKE_MAJOR -eq 3 -a $MAKE_MINOR -lt 8 ] ; then
+if [ $MAKE_MAJOR -lt 3 ] || [ $MAKE_MAJOR -eq 3 -a $MAKE_MINOR -lt 80 ] ; then
        echo "You have make '$MAKE_VERSION' installed.  GNU make >=3.80 is required"
        exit 1;
 fi;