diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-12 04:18:05 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-10-12 04:18:05 +0200 |
commit | d4d289acf5eb59ebae414f9aae8a74de30dce36a (patch) | |
tree | 7a7c261ce263eeb15d152a904936d55c41858b5e /libbb | |
parent | b1993380ba4a89062a08b2b6c579158aa667759e (diff) | |
download | busybox-d4d289acf5eb59ebae414f9aae8a74de30dce36a.tar.gz |
tweaks to build system, mainly making menuconfig text and order clearer
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/appletlib.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libbb/appletlib.c b/libbb/appletlib.c index 7326f4fa5..b32ff8808 100644 --- a/libbb/appletlib.c +++ b/libbb/appletlib.c @@ -592,9 +592,11 @@ static const char usr_sbin[] ALIGN1 = "/usr/sbin/"; static const char *const install_dir[] = { &usr_bin [8], /* "/" */ &usr_bin [4], /* "/bin/" */ - &usr_sbin[4], /* "/sbin/" */ - usr_bin, - usr_sbin + &usr_sbin[4] /* "/sbin/" */ +# if !ENABLE_INSTALL_NO_USR + ,usr_bin + ,usr_sbin +# endif }; |