X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=include%2Fprereq-build.mk;h=c31020c3211d528acca14d8d4a1a233652dfb1d6;hb=a1b3bca6f37fc21d4dd537a0bd1bc115a7163f5f;hp=10bc68ae158585f6a0c54dda6d42c43622378a7e;hpb=cb5253ef17c0b62d18a7157ee2d9d69280c1ac40;p=openwrt%2Fsvn-archive%2Farchive.git diff --git a/include/prereq-build.mk b/include/prereq-build.mk index 10bc68ae15..c31020c321 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -6,10 +6,11 @@ # include $(TOPDIR)/rules.mk -TMP_DIR:=$(TOPDIR)/tmp include $(INCLUDE_DIR)/prereq.mk include $(INCLUDE_DIR)/host.mk +PKG_NAME:=Build dependency + define Require/non-root [ "$$(shell whoami)" != "root" ] endef @@ -51,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++, \ @@ -77,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. \ @@ -86,10 +91,6 @@ $(eval $(call RequireCommand,flex, \ Please install flex. \ )) -$(eval $(call RequireCommand,python, \ - Please install python. \ -)) - $(eval $(call RequireCommand,unzip, \ Please install unzip. \ )) @@ -117,3 +118,8 @@ endef $(eval $(call Require,gnutar, \ Please install GNU tar. \ )) + +$(eval $(call RequireCommand,autoconf, \ + Please install GNU autoconf. \ +)) +