hush: add missing dependencies (Maxime Bizon <mbizon@freebox.fr> (Freebox))
authorDenis Vlasenko <vda.linux@googlemail.com>
Fri, 8 Jun 2007 08:02:53 +0000 (08:02 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Fri, 8 Jun 2007 08:02:53 +0000 (08:02 -0000)
shell/Config.in

index 90479013eb32ff6044109ded967d55ce0624c9ef..0689b4ec274dc277c0f1211752ab88e34e7b43ca 100644 (file)
@@ -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.