mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 23:32:49 +02:00
[include] Fix typo in GNU Make prereq check
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31213 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
8b09b5ce75
commit
54eef89c33
@ -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.
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
# See /LICENSE for more information.
|
# See /LICENSE for more information.
|
||||||
@ -20,7 +20,7 @@ $(eval $(call Require,non-root, \
|
|||||||
|
|
||||||
# Required for the toolchain
|
# Required for the toolchain
|
||||||
define Require/working-make
|
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
|
endef
|
||||||
|
|
||||||
$(eval $(call Require,working-make, \
|
$(eval $(call Require,working-make, \
|
||||||
|
Loading…
Reference in New Issue
Block a user