aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-06-08 08:02:53 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-06-08 08:02:53 +0000
commit42bffbf360975515b41fce94382b27857cfcf994 (patch)
tree763fae1088c6f44821eb81606fd286a389c9240a
parentdc4ab54ea7e98fdfd3e1e07ca0743b77baca7856 (diff)
downloadbusybox-w32-42bffbf360975515b41fce94382b27857cfcf994.tar.gz
busybox-w32-42bffbf360975515b41fce94382b27857cfcf994.tar.bz2
busybox-w32-42bffbf360975515b41fce94382b27857cfcf994.zip
hush: add missing dependencies (Maxime Bizon <mbizon@freebox.fr> (Freebox))
-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
179config HUSH_HELP 179config HUSH_HELP
180 bool "help builtin" 180 bool "help builtin"
181 default n 181 default n
182 depends on HUSH
182 help 183 help
183 Enable help builtin in hush. Code size + ~1 kbyte. 184 Enable help builtin in hush. Code size + ~1 kbyte.
184 185
@@ -206,18 +207,21 @@ config HUSH_JOB
206config HUSH_TICK 207config HUSH_TICK
207 bool "Process substitution" 208 bool "Process substitution"
208 default n 209 default n
210 depends on HUSH
209 help 211 help
210 Enable process substitution `command` and $(command) in hush. 212 Enable process substitution `command` and $(command) in hush.
211 213
212config HUSH_IF 214config HUSH_IF
213 bool "Support if/then/elif/else/fi" 215 bool "Support if/then/elif/else/fi"
214 default n 216 default n
217 depends on HUSH
215 help 218 help
216 Enable if/then/elif/else/fi in hush. 219 Enable if/then/elif/else/fi in hush.
217 220
218config HUSH_LOOPS 221config HUSH_LOOPS
219 bool "Support for, while and until loops" 222 bool "Support for, while and until loops"
220 default n 223 default n
224 depends on HUSH
221 help 225 help
222 Enable for, while and until loops in hush. 226 Enable for, while and until loops in hush.
223 227