diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-08-26 23:13:00 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-08-26 23:13:00 +0000 |
commit | 138791050d36d221d718568094892245d7c6f6ec (patch) | |
tree | 24c9479dab9bc019f716093628a70e392b3c40cb /Makefile | |
parent | 37ba6bfb6d7ff7287ecda14bb4906fa6de1e78c9 (diff) | |
download | busybox-w32-138791050d36d221d718568094892245d7c6f6ec.tar.gz busybox-w32-138791050d36d221d718568094892245d7c6f6ec.tar.bz2 busybox-w32-138791050d36d221d718568094892245d7c6f6ec.zip |
Improve the setuid situation a bit, and make it more apparent
when people really ought to make busybox setuid root.
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -57,6 +57,16 @@ busybox.links: applets/busybox.mkll include/config.h | |||
57 | 57 | ||
58 | install: applets/install.sh busybox busybox.links | 58 | install: applets/install.sh busybox busybox.links |
59 | $(SHELL) $< $(PREFIX) | 59 | $(SHELL) $< $(PREFIX) |
60 | ifeq ($(strip $(CONFIG_FEATURE_SUID)),y) | ||
61 | @echo | ||
62 | @echo | ||
63 | @echo -------------------------------------------------- | ||
64 | @echo You will probably need to make your busybox binary | ||
65 | @echo setuid root to ensure all configured applets will | ||
66 | @echo work properly. | ||
67 | @echo -------------------------------------------------- | ||
68 | @echo | ||
69 | endif | ||
60 | 70 | ||
61 | uninstall: busybox.links | 71 | uninstall: busybox.links |
62 | rm -f $(PREFIX)/bin/busybox | 72 | rm -f $(PREFIX)/bin/busybox |