Skip to content
Snippets Groups Projects
Commit c11586a2 authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

add a prereq check for umask 0022, other settings will result in broken packages

SVN-Revision: 23442
parent fc035b3c
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment