prereq check for find -exec +

SVN-Revision: 6940
This commit is contained in:
Mike Baker 2007-04-12 18:17:38 +00:00
parent c38691f291
commit 8857381856
1 changed files with 8 additions and 0 deletions

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. \
))