X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/aec70ecef0bb7a8fce661de6a991b7f0864e140e..d5d1a22de670e4582f45cf137861e2257cc7bdc6:/include/prereq-build.mk diff --git a/include/prereq-build.mk b/include/prereq-build.mk index afb92ff02..5b3a7734b 100644 --- a/include/prereq-build.mk +++ b/include/prereq-build.mk @@ -18,13 +18,6 @@ $(eval $(call Require,non-root, \ Please do not compile as root. \ )) -define Require/umask-0022 - [ "$$(shell umask)" -eq 22 ] -endef -$(eval $(call Require,umask-0022, \ - Please compile with umask 0022. \ -)) - # Required for the toolchain define Require/working-make $(MAKE) -v | awk '($$$$1 == "GNU") && ($$$$2 = "Make") && ($$$$3 >= "3.81") { print "ok" }' | grep ok > /dev/null @@ -128,6 +121,10 @@ $(eval $(call RequireCommand,wget, \ Please install wget. \ )) +$(eval $(call RequireCommand,git, \ + Please install git (git-core). \ +)) + define Require/gnutar $(TAR) --version 2>&1 | grep GNU > /dev/null endef