diff options
author | Eric Andersen | 2001-11-10 13:08:02 +0000 |
---|---|---|
committer | Eric Andersen | 2001-11-10 13:08:02 +0000 |
commit | 45784febaf5e5f635bedb831b9609655ce33b525 (patch) | |
tree | a0ebf9d7cb4978c38ba542a9a49c069992719278 /shell | |
parent | dba4e6f0468ee3ec9cd3825404e85eeba3795c24 (diff) | |
download | busybox-45784febaf5e5f635bedb831b9609655ce33b525.zip busybox-45784febaf5e5f635bedb831b9609655ce33b525.tar.gz |
Some more minor build cleanups
Diffstat (limited to 'shell')
-rw-r--r-- | shell/config.in | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/shell/config.in b/shell/config.in index b910040..2efec97 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 |