X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/6726f607d6876d2e71583685f1242a6a0899c498..b15366186d330d7581ececb5401693674d4ec5e6:/include/prereq-build.mk?ds=sidebyside diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 78a278ead..c31020c32 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -52,7 +52,8 @@ $(eval $(call Require,working-gcc, \ define Require/working-g++ echo 'int main(int argc, char **argv) { return 0; }' | \ - g++ -x c++ -o $(TMP_DIR)/a.out -lstdc++ - + g++ -x c++ -o $(TMP_DIR)/a.out -lstdc++ - && \ + $(TMP_DIR)/a.out endef $(eval $(call Require,working-g++, \ @@ -78,6 +79,9 @@ $(eval $(call Require,zlib, \ Please install zlib. (Missing libz.so or zlib.h) \ )) +$(eval $(call RequireCommand,gawk, \ + Please install GNU awk. \ +)) $(eval $(call RequireCommand,bison, \ Please install GNU bison. \ @@ -119,4 +123,3 @@ $(eval $(call RequireCommand,autoconf, \ Please install GNU autoconf. \ )) -