aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-11-10 13:08:02 +0000
committerEric Andersen <andersen@codepoet.org>2001-11-10 13:08:02 +0000
commit45784febaf5e5f635bedb831b9609655ce33b525 (patch)
treea0ebf9d7cb4978c38ba542a9a49c069992719278 /shell
parentdba4e6f0468ee3ec9cd3825404e85eeba3795c24 (diff)
downloadbusybox-w32-45784febaf5e5f635bedb831b9609655ce33b525.tar.gz
busybox-w32-45784febaf5e5f635bedb831b9609655ce33b525.tar.bz2
busybox-w32-45784febaf5e5f635bedb831b9609655ce33b525.zip
Some more minor build cleanups
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