From: Jan-Benedict G. <jb...@us...> - 2005-08-20 19:21:46
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2238 Modified Files: build_toolchain.sh Log Message: - Only create scrip for sending the check summary if checking was actually requested (as in: not turned off). Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.14 retrieving revision 1.15 diff -u -d -r1.14 -r1.15 --- build_toolchain.sh 6 Aug 2005 23:52:33 -0000 1.14 +++ build_toolchain.sh 20 Aug 2005 19:21:38 -0000 1.15 @@ -456,7 +456,7 @@ # Create a test summary to be sent as a proof that the vax-linux # community exists and is still alive. - "${GCC_SRC}/contrib/test_summary" -m bin...@so... > "${ALL_BASE}/send_binutils_summary.sh" + build "${DO_CHECKS_BINUTILS}" && "${GCC_SRC}/contrib/test_summary" -m bin...@so... > "${ALL_BASE}/send_binutils_summary.sh" popd # @@ -500,6 +500,6 @@ # Create a test summary to be sent as a proof that the vax-linux # community exists and is still alive. - "${GCC_SRC}/contrib/test_summary" -m gcc...@gc... > "${ALL_BASE}/send_gcc_summary.sh" + build "${DO_CHECKS_GCC}" && "${GCC_SRC}/contrib/test_summary" -m gcc...@gc... > "${ALL_BASE}/send_gcc_summary.sh" popd |