fix uclibc_target with devel headers
[buildroot.git] / package / busybox / busybox-1.6.0-hushdep.patch
blob252267f4438433a94b0ab1b49a0d6e3ad026a06d
1 --- busybox-1.6.0/shell/Config.in Fri Jun 1 13:48:33 2007
2 +++ busybox-1.6.0-hushdep/shell/Config.in Sun Jun 10 01:02:47 2007
3 @@ -179,6 +179,7 @@
4 config HUSH_HELP
5 bool "help builtin"
6 default n
7 + depends on HUSH
8 help
9 Enable help builtin in hush. Code size + ~1 kbyte.
11 @@ -206,18 +207,21 @@
12 config HUSH_TICK
13 bool "Process substitution"
14 default n
15 + depends on HUSH
16 help
17 Enable process substitution `command` and $(command) in hush.
19 config HUSH_IF
20 bool "Support if/then/elif/else/fi"
21 default n
22 + depends on HUSH
23 help
24 Enable if/then/elif/else/fi in hush.
26 config HUSH_LOOPS
27 bool "Support for, while and until loops"
28 default n
29 + depends on HUSH
30 help
31 Enable for, while and until loops in hush.