diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-10 12:10:08 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-02-10 12:10:08 +0000 |
commit | 05743d79496cf96e9f6f645b6bbc165d51e6aa5c (patch) | |
tree | 50fb492810d898cdcafe63009bbb08a1dde039ca /shell/hush_test/run-all | |
parent | 68e8e96d7fba018b5b2354434fe0ae95fdfffc4f (diff) | |
download | busybox-05743d79496cf96e9f6f645b6bbc165d51e6aa5c.tar.gz |
hush: reinstate `cmd` handling for NOMMU (with fat big warning).
hush: fix a case where none of pipe members could be started
because of fork failure
hush: rename functions: xxx_real -> xxx
hush: try to add a bit more of vfork-friendliness
hush: add rudimentary design docs
hush: add TODO (newly discovered bug with globbing)
Diffstat (limited to 'shell/hush_test/run-all')
-rwxr-xr-x | shell/hush_test/run-all | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/shell/hush_test/run-all b/shell/hush_test/run-all index c75d81e55..805f75ad5 100755 --- a/shell/hush_test/run-all +++ b/shell/hush_test/run-all @@ -1,6 +1,9 @@ #!/bin/sh -test -x hush || { echo "No ./hush?!"; exit; } +test -x hush || { + echo "No ./hush?! Perhaps you want to run 'ln -s ../../busybox hush'" + exit +} PATH="$PWD:$PATH" # for hush and recho/zecho/printenv export PATH |