1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-06-26 03:22:57 +03:00

prereq check for find -exec +

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6940 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mbm 2007-04-12 18:17:38 +00:00
parent 80f367f6f1
commit 270fe35d13

View File

@ -121,3 +121,11 @@ $(eval $(call Require,gnutar, \
$(eval $(call RequireCommand,autoconf, \
Please install GNU autoconf. \
))
define Require/find
find . -maxdepth 1 -exec ls {} + > /dev/null 2>&1
endef
$(eval $(call Require,find, \
Please install GNU find 4.2.12 or better. \
))