summaryrefslogtreecommitdiff
path: root/include/prereq-build.mk
diff options
context:
space:
mode:
authorVasilis Tsiligiannis <acinonyx@openwrt.gr>2012-04-06 11:44:13 +0000
committerVasilis Tsiligiannis <acinonyx@openwrt.gr>2012-04-06 11:44:13 +0000
commitf37ce3fad3639c7edc2617f6d169cd42c5f9b099 (patch)
tree9a1ad38c4bcf29c43454a955702b300f813def61 /include/prereq-build.mk
parentf14fd53e3cf6d0eab92ebc4d37792464577efbf1 (diff)
downloadmtk-20170518-f37ce3fad3639c7edc2617f6d169cd42c5f9b099.zip
mtk-20170518-f37ce3fad3639c7edc2617f6d169cd42c5f9b099.tar.gz
mtk-20170518-f37ce3fad3639c7edc2617f6d169cd42c5f9b099.tar.bz2
Fix typo in GNU Make prereq check
SVN-Revision: 31213
Diffstat (limited to 'include/prereq-build.mk')
-rw-r--r--include/prereq-build.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk
index 5b3a773..c80e004 100644
--- a/include/prereq-build.mk
+++ b/include/prereq-build.mk
@@ -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, \