aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-10-12 04:18:05 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2010-10-12 04:18:05 +0200
commitd4d289acf5eb59ebae414f9aae8a74de30dce36a (patch)
tree7a7c261ce263eeb15d152a904936d55c41858b5e /include
parentb1993380ba4a89062a08b2b6c579158aa667759e (diff)
downloadbusybox-w32-d4d289acf5eb59ebae414f9aae8a74de30dce36a.tar.gz
busybox-w32-d4d289acf5eb59ebae414f9aae8a74de30dce36a.tar.bz2
busybox-w32-d4d289acf5eb59ebae414f9aae8a74de30dce36a.zip
tweaks to build system, mainly making menuconfig text and order clearer
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r--include/applets.src.h5
-rw-r--r--include/busybox.h7
2 files changed, 6 insertions, 6 deletions
diff --git a/include/applets.src.h b/include/applets.src.h
index d2b1d198f..6a14a6588 100644
--- a/include/applets.src.h
+++ b/include/applets.src.h
@@ -56,11 +56,6 @@ s - suid type:
56# define APPLET_NOFORK(name,main,l,s,name2) { #name, #main, l, s, 1, 1 }, 56# define APPLET_NOFORK(name,main,l,s,name2) { #name, #main, l, s, 1, 1 },
57#endif 57#endif
58 58
59#if ENABLE_INSTALL_NO_USR
60# define _BB_DIR_USR_BIN _BB_DIR_BIN
61# define _BB_DIR_USR_SBIN _BB_DIR_SBIN
62#endif
63
64 59
65INSERT 60INSERT
66IF_TEST(APPLET_NOFORK([, test, _BB_DIR_USR_BIN, _BB_SUID_DROP, test)) 61IF_TEST(APPLET_NOFORK([, test, _BB_DIR_USR_BIN, _BB_SUID_DROP, test))
diff --git a/include/busybox.h b/include/busybox.h
index 76415dd72..757317fc7 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -16,8 +16,13 @@ typedef enum bb_install_loc_t {
16 _BB_DIR_ROOT = 0, 16 _BB_DIR_ROOT = 0,
17 _BB_DIR_BIN, 17 _BB_DIR_BIN,
18 _BB_DIR_SBIN, 18 _BB_DIR_SBIN,
19#if ENABLE_INSTALL_NO_USR
20 _BB_DIR_USR_BIN = _BB_DIR_BIN,
21 _BB_DIR_USR_SBIN = _BB_DIR_SBIN,
22#else
19 _BB_DIR_USR_BIN, 23 _BB_DIR_USR_BIN,
20 _BB_DIR_USR_SBIN 24 _BB_DIR_USR_SBIN,
25#endif
21} bb_install_loc_t; 26} bb_install_loc_t;
22 27
23typedef enum bb_suid_t { 28typedef enum bb_suid_t {