From: Jan-Benedict G. <jb...@us...> - 2005-12-21 15:37:08
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23168 Modified Files: run_test_build.sh Log Message: - Really accept the optional argument. Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- run_test_build.sh 21 Dec 2005 15:36:08 -0000 1.16 +++ run_test_build.sh 21 Dec 2005 15:37:00 -0000 1.17 @@ -1,6 +1,6 @@ #!/bin/sh -if [ $# -ne 7 ]; then +if [ $# -lt 7 -o $# -gt 8 ]; then echo "$0 target /path/to/build-directory /path/to/vax_toolchain_config ma...@ad... /path/to/build.okay /path/to/build.not-okay /path/to/lockfile {/path/to/testresult_dir}" >&2 echo "" >&2 echo "target -- Something like vax-linux or vax-linux-uclibc" >&2 |