diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-04-24 19:28:11 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-04-24 19:28:11 +0000 |
commit | 8306b558621729da7ab8c48456288242c6b4b58b (patch) | |
tree | 9b2b21baf74b799c7ff70eb9a5867bcf48678fb1 | |
parent | e1bd4e9aa45154d1c0b4a6175541bb631ac2d6be (diff) | |
download | upstream-8306b558621729da7ab8c48456288242c6b4b58b.tar.gz upstream-8306b558621729da7ab8c48456288242c6b4b58b.tar.bz2 upstream-8306b558621729da7ab8c48456288242c6b4b58b.zip |
build: add a prereq check for file (#15692)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 40568
-rw-r--r-- | include/prereq-build.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk index b7ada69bb4..2e8d712cb8 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -187,3 +187,7 @@ endef $(eval $(call Require,getopt-extended, \ Please install an extended getopt version that supports --long \ )) + +$(eval $(call RequireCommand,file, \ + Please install file. \ +)) |