mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-04 23:17:30 +02:00
[include] add a prereq check for umask 0022, other settings will result in broken packages
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@23442 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
a63bf2580b
commit
aec70ecef0
@ -18,6 +18,13 @@ $(eval $(call Require,non-root, \
|
|||||||
Please do not compile as 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
|
# Required for the toolchain
|
||||||
define Require/working-make
|
define Require/working-make
|
||||||
$(MAKE) -v | awk '($$$$1 == "GNU") && ($$$$2 = "Make") && ($$$$3 >= "3.81") { print "ok" }' | grep ok > /dev/null
|
$(MAKE) -v | awk '($$$$1 == "GNU") && ($$$$2 = "Make") && ($$$$3 >= "3.81") { print "ok" }' | grep ok > /dev/null
|
||||||
|
Loading…
Reference in New Issue
Block a user