diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-27 20:48:49 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-04-27 20:48:49 +0000 |
commit | 7dff4333d61a2157a1bec9affd34a328c520ef40 (patch) | |
tree | 45e831c7d92c649aaa51abeae9d103b711845ff7 /testsuite | |
parent | 5d0f4aaa99f09aa7d4efe12cdcb5b76a69ed29aa (diff) | |
download | busybox-7dff4333d61a2157a1bec9affd34a328c520ef40.tar.gz |
runtest: fix fallout from mucking with runtest :( [vda's fault]
Diffstat (limited to 'testsuite')
-rwxr-xr-x | testsuite/runtest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/runtest b/testsuite/runtest index 34f0de2b3..660d08eca 100755 --- a/testsuite/runtest +++ b/testsuite/runtest @@ -82,8 +82,8 @@ run_applet_tests() lcwd=$(pwd) -[ x"$tsdir" = x ] || tsdir="$lcwd" -[ x"$bindir" = x ] || bindir="${lcwd%/*}" # one directory up from $lcwd +[ x"$tsdir" != x ] || tsdir="$lcwd" +[ x"$bindir" != x ] || bindir="${lcwd%/*}" # one directory up from $lcwd PATH="$bindir:$PATH" if [ x"$VERBOSE" = x ]; then |