summaryrefslogtreecommitdiff
path: root/include/prereq-build.mk
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-10-14 14:25:29 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-10-14 14:25:29 +0000
commitc11586a2033dbf39fb67d573fdde4718597728c8 (patch)
treed682234589b5ad50e4232a11eb5eeec80e81993f /include/prereq-build.mk
parentfc035b3cb6c0768fe7b184d170bf33294895abb0 (diff)
downloadmtk-20170518-c11586a2033dbf39fb67d573fdde4718597728c8.zip
mtk-20170518-c11586a2033dbf39fb67d573fdde4718597728c8.tar.gz
mtk-20170518-c11586a2033dbf39fb67d573fdde4718597728c8.tar.bz2
add a prereq check for umask 0022, other settings will result in broken packages
SVN-Revision: 23442
Diffstat (limited to 'include/prereq-build.mk')
-rw-r--r--include/prereq-build.mk7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/prereq-build.mk b/include/prereq-build.mk
index 84d3f22..afb92ff 100644
--- a/include/prereq-build.mk
+++ b/include/prereq-build.mk
@@ -18,6 +18,13 @@ $(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