mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-16 17:59:41 +02:00
add prereq check to prevent people from building openwrt as root
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4655 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
00394c5771
commit
be92007613
@ -8,6 +8,13 @@
|
|||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
include $(INCLUDE_DIR)/prereq.mk
|
include $(INCLUDE_DIR)/prereq.mk
|
||||||
|
|
||||||
|
define Require/non-root
|
||||||
|
[ "$$(shell whoami)" != "root" ]
|
||||||
|
endef
|
||||||
|
$(eval $(call Require,non-root, \
|
||||||
|
Building OpenWrt as root is not supported! \
|
||||||
|
))
|
||||||
|
|
||||||
# Required for the toolchain
|
# Required for the toolchain
|
||||||
define Require/working-make
|
define Require/working-make
|
||||||
echo 'all: test' > $(TMP_DIR)/check.mk
|
echo 'all: test' > $(TMP_DIR)/check.mk
|
||||||
|
Loading…
Reference in New Issue
Block a user