aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-11-10 13:08:02 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-11-10 13:08:02 +0000
commitbbc70b19b1ac39a5b2031a969e6727607eebcff1 (patch)
treea0ebf9d7cb4978c38ba542a9a49c069992719278 /shell
parentca3ed5d6080e950e3ce0a0e170ddabf646eb1eb3 (diff)
downloadbusybox-w32-bbc70b19b1ac39a5b2031a969e6727607eebcff1.tar.gz
busybox-w32-bbc70b19b1ac39a5b2031a969e6727607eebcff1.tar.bz2
busybox-w32-bbc70b19b1ac39a5b2031a969e6727607eebcff1.zip
Some more minor build cleanups
git-svn-id: svn://busybox.net/trunk/busybox@3654 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'shell')
-rw-r--r--shell/config.in18
1 files changed, 5 insertions, 13 deletions
diff --git a/shell/config.in b/shell/config.in
index b9100401e..2efec9765 100644
--- a/shell/config.in
+++ b/shell/config.in
@@ -15,32 +15,24 @@ choice 'Choose your default shell' \
15 15
16if [ "$CONFIG_FEATURE_SH_IS_ASH" = "y" ] ; then 16if [ "$CONFIG_FEATURE_SH_IS_ASH" = "y" ] ; then
17 define_bool CONFIG_ASH y 17 define_bool CONFIG_ASH y
18 comment 'ash'
19else
20 bool 'ash' CONFIG_ASH
21fi 18fi
22 19
23if [ "$CONFIG_FEATURE_SH_IS_HUSH" = "y" ] ; then 20if [ "$CONFIG_FEATURE_SH_IS_HUSH" = "y" ] ; then
24 define_bool CONFIG_HUSH y 21 define_bool CONFIG_HUSH y
25 comment 'hush'
26else
27 bool 'hush' CONFIG_HUSH
28fi 22fi
29 23
30if [ "$CONFIG_FEATURE_SH_IS_LASH" = "y" ] ; then 24if [ "$CONFIG_FEATURE_SH_IS_LASH" = "y" ] ; then
31 define_bool CONFIG_LASH y 25 define_bool CONFIG_LASH y
32 comment 'lash'
33else
34 bool 'lash' CONFIG_LASH
35fi 26fi
36 27
37if [ "$CONFIG_FEATURE_SH_IS_MSH" = "y" ] ; then 28if [ "$CONFIG_FEATURE_SH_IS_MSH" = "y" ] ; then
38 define_bool CONFIG_MSH y 29 define_bool CONFIG_MSH y
39 comment 'msh'
40else
41 bool 'msh' CONFIG_MSH
42fi 30fi
43 31
32bool 'ash' CONFIG_ASH
33bool 'hush' CONFIG_HUSH
34bool 'lash' CONFIG_LASH
35bool 'msh' CONFIG_MSH
44 36
45comment 'Bourne Shell Options' 37comment 'Bourne Shell Options'
46bool 'command line editing' CONFIG_FEATURE_COMMAND_EDITING 38bool 'command line editing' CONFIG_FEATURE_COMMAND_EDITING