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/appletlib.c | |
parent | b1993380ba4a89062a08b2b6c579158aa667759e (diff) | |
download | busybox-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 'libbb/appletlib.c')
-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/"; | |||
592 | static const char *const install_dir[] = { | 592 | static const char *const install_dir[] = { |
593 | &usr_bin [8], /* "/" */ | 593 | &usr_bin [8], /* "/" */ |
594 | &usr_bin [4], /* "/bin/" */ | 594 | &usr_bin [4], /* "/bin/" */ |
595 | &usr_sbin[4], /* "/sbin/" */ | 595 | &usr_sbin[4] /* "/sbin/" */ |
596 | usr_bin, | 596 | # if !ENABLE_INSTALL_NO_USR |
597 | usr_sbin | 597 | ,usr_bin |
598 | ,usr_sbin | ||
599 | # endif | ||
598 | }; | 600 | }; |
599 | 601 | ||
600 | 602 | ||