diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-06 20:59:55 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-06-06 20:59:55 +0200 |
commit | d6b05eb9c27196ebe89b180d71ad86bf42e97002 (patch) | |
tree | bb9d1d01d2c8725a4ef1fc4bf7893c05f0327a02 /shell/ash.c | |
parent | 62152da892e9445beaed60a461cf63721f52eff4 (diff) | |
download | busybox-w32-d6b05eb9c27196ebe89b180d71ad86bf42e97002.tar.gz busybox-w32-d6b05eb9c27196ebe89b180d71ad86bf42e97002.tar.bz2 busybox-w32-d6b05eb9c27196ebe89b180d71ad86bf42e97002.zip |
hush: make builtins work in pipes (eval ... | ...) on NOMMU
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 1e7429cb1..cc5802c30 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -12233,7 +12233,7 @@ helpcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) | |||
12233 | unsigned col; | 12233 | unsigned col; |
12234 | unsigned i; | 12234 | unsigned i; |
12235 | 12235 | ||
12236 | out1fmt("\n" | 12236 | out1fmt( |
12237 | "Built-in commands:\n" | 12237 | "Built-in commands:\n" |
12238 | "------------------\n"); | 12238 | "------------------\n"); |
12239 | for (col = 0, i = 0; i < ARRAY_SIZE(builtintab); i++) { | 12239 | for (col = 0, i = 0; i < ARRAY_SIZE(builtintab); i++) { |