Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-06-08 12:02:53 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2007-06-08 12:02:53 +0400
commit42bffbf360975515b41fce94382b27857cfcf994 (patch)
tree763fae1088c6f44821eb81606fd286a389c9240a /shell
parentdc4ab54ea7e98fdfd3e1e07ca0743b77baca7856 (diff)
hush: add missing dependencies (Maxime Bizon <mbizon@freebox.fr> (Freebox))
Diffstat (limited to 'shell')
-rw-r--r--shell/Config.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/Config.in b/shell/Config.in
index 90479013e..0689b4ec2 100644
--- a/shell/Config.in
+++ b/shell/Config.in
@@ -179,6 +179,7 @@ config HUSH
config HUSH_HELP
bool "help builtin"
default n
+ depends on HUSH
help
Enable help builtin in hush. Code size + ~1 kbyte.
@@ -206,18 +207,21 @@ config HUSH_JOB
config HUSH_TICK
bool "Process substitution"
default n
+ depends on HUSH
help
Enable process substitution `command` and $(command) in hush.
config HUSH_IF
bool "Support if/then/elif/else/fi"
default n
+ depends on HUSH
help
Enable if/then/elif/else/fi in hush.
config HUSH_LOOPS
bool "Support for, while and until loops"
default n
+ depends on HUSH
help
Enable for, while and until loops in hush.