From: Jan-Benedict G. <jb...@us...> - 2007-07-07 17:04:31
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv11019 Modified Files: run_test_build.sh Log Message: * Should work with POSIX sh. * Update documentation a bit. (Though I'm not yet there to put the GIT tree fully into the build machinery.) Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- run_test_build.sh 4 Jul 2007 18:18:52 -0000 1.25 +++ run_test_build.sh 7 Jul 2007 17:04:28 -0000 1.26 @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/usr/bin/env sh 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 @@ -9,7 +9,7 @@ echo "ma...@ad... -- Email address/addresses to send result to. Beware, this is _one_ argument, use quotes" >&2 echo "/path/to/build.okay -- Location to save the build.log to IFF the build went okay" >&2 echo "/path/to/build.not-okay -- Location to save the build.log to IFF the build was unsuccessful" >&2 - echo "/path/to/lockfile -- GLOBAL lockfile for CVS/SVN updates and ALL and ANY builds" >&2 + echo "/path/to/lockfile -- GLOBAL lockfile for CVS/SVN/GIT updates and ALL and ANY builds" >&2 echo "/path/to/testresult_dir -- Results of the test suite are put here. Optional." >&2 exit 1 fi @@ -179,4 +179,3 @@ unlock exit 1 fi - |