The branch, master has been updated via bba2790 fix "test: =: unary operator expected" error as one of the vars could be empty? from 73098e8 generic.fns: fix duplicate compiler detection
http://gitweb.samba.org/?p=build-farm.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit bba2790f0582fa968e590c54079a750279d9aff7 Author: Björn Jacke <b...@sernet.de> Date: Fri Dec 3 12:13:07 2010 +0100 fix "test: =: unary operator expected" error as one of the vars could be empty? ----------------------------------------------------------------------- Summary of changes: build_test.fns | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) Changeset truncated at 500 lines: diff --git a/build_test.fns b/build_test.fns index 9717770..b7649bd 100644 --- a/build_test.fns +++ b/build_test.fns @@ -197,7 +197,7 @@ lock_file() { fi if test -f "$lckf"; then - test $machine = $host || { + test x$machine = x$host || { echo "lock file $lckf is valid for other machine $machine" return 1 } -- build.samba.org