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-45784febaf5e5f635bedb831b9609655ce33b525.tar.gz
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' \
if [ "$CONFIG_FEATURE_SH_IS_ASH" = "y" ] ; then
define_bool CONFIG_ASH y
- comment 'ash'
-else
- bool 'ash' CONFIG_ASH
fi
-
+
if [ "$CONFIG_FEATURE_SH_IS_HUSH" = "y" ] ; then
define_bool CONFIG_HUSH y
- comment 'hush'
-else
- bool 'hush' CONFIG_HUSH
fi
if [ "$CONFIG_FEATURE_SH_IS_LASH" = "y" ] ; then
define_bool CONFIG_LASH y
- comment 'lash'
-else
- bool 'lash' CONFIG_LASH
fi
if [ "$CONFIG_FEATURE_SH_IS_MSH" = "y" ] ; then
define_bool CONFIG_MSH y
- comment 'msh'
-else
- bool 'msh' CONFIG_MSH
fi
+bool 'ash' CONFIG_ASH
+bool 'hush' CONFIG_HUSH
+bool 'lash' CONFIG_LASH
+bool 'msh' CONFIG_MSH
comment 'Bourne Shell Options'
bool 'command line editing' CONFIG_FEATURE_COMMAND_EDITING