Fix typo in GNU Make prereq check
[librecmc/librecmc.git] / include / prereq-build.mk
index 84d3f2274c6b3c8f58cc291018881e4d7f84320c..c80e004c0cde3c14d20af263c883ea5b99a913a3 100644 (file)
@@ -1,5 +1,5 @@
 # 
-# Copyright (C) 2006 OpenWrt.org
+# Copyright (C) 2006-2012 OpenWrt.org
 #
 # This is free software, licensed under the GNU General Public License v2.
 # See /LICENSE for more information.
@@ -20,7 +20,7 @@ $(eval $(call Require,non-root, \
 
 # Required for the toolchain
 define Require/working-make
-       $(MAKE) -v | awk '($$$$1 == "GNU") && ($$$$2 = "Make") && ($$$$3 >= "3.81") { print "ok" }' | grep ok > /dev/null
+       $(MAKE) -v | awk '($$$$1 == "GNU") && ($$$$2 == "Make") && ($$$$3 >= "3.81") { print "ok" }' | grep ok > /dev/null
 endef
 
 $(eval $(call Require,working-make, \
@@ -121,6 +121,10 @@ $(eval $(call RequireCommand,wget, \
        Please install wget. \
 ))
 
+$(eval $(call RequireCommand,git, \
+       Please install git (git-core). \
+))
+
 define Require/gnutar
        $(TAR) --version 2>&1 | grep GNU > /dev/null
 endef