From: Jan-Benedict G. <jb...@us...> - 2007-07-04 18:18:55
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv27758 Modified Files: run_test_build.sh Log Message: * After building a toolchain, create a tarball of cross and native compiler. In case of build failures, one or the other may be empty. Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- run_test_build.sh 25 Oct 2006 07:24:22 -0000 1.24 +++ run_test_build.sh 4 Jul 2007 18:18:52 -0000 1.25 @@ -100,6 +100,9 @@ popd > /dev/null 2>&1 fi fi + + tar cjf "/tmp/${TARGET}-installation.tar.bz2" "${BUILD_DIRECTORY}/install" "${BUILD_DIRECTORY}/install-native" > /dev/null 2>&1 + rm -rf "${BUILD_DIRECTORY}" rm -f "${LOCKFILE}" } |