From 3ade43a3c741a6ef1f1b238b81db681d091ed74b Mon Sep 17 00:00:00 2001 From: Marcel Loose <loose@astron.nl> Date: Tue, 28 Nov 2006 08:37:15 +0000 Subject: [PATCH] BugID: 980 Fixed the problem. `dorubbuild' does a `tee' to the build log file, which overwrites it, instead of a `tee -a' which appends to it. --- autoconf_share/dorubbuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/autoconf_share/dorubbuild b/autoconf_share/dorubbuild index 664ab76d446..1cb08b71761 100755 --- a/autoconf_share/dorubbuild +++ b/autoconf_share/dorubbuild @@ -93,7 +93,7 @@ cd $srcdir >> $logfile 2>&1 || exit 1 srcdir=`pwd` curwdl=`basename $srcdir` if [ "$curwdl" != "LOFAR" ]; then - echo "Error in rubbuild: srcdir must be the LOFAR directory in the code tree" | tee $logfile + echo "Error in rubbuild: srcdir must be the LOFAR directory in the code tree" | tee -a $logfile exit 1 fi @@ -144,11 +144,11 @@ do if [ $skipbuilt = 1 ]; then fgrep "$pkg " $resfile >& /dev/null if [ $? = 0 ]; then - echo " skipping package $pkg; already built in a previous run" | tee $logfile + echo " skipping package $pkg; already built in a previous run" | tee -a $logfile continue fi fi - echo " *** Building package $pkg ***" | tee $logfile + echo " *** Building package $pkg ***" | tee -a $logfile if [ "$builddir" = "." ]; then initcmd="cd $pkg && mkdir -p build/$variant && cd build/$variant" @@ -177,8 +177,8 @@ do done if [ "$status" != 0 ]; then - echo " Error during build on `uname -n` (see $logfile for details)" | tee $srcdir/build.log + echo " Error during build on `uname -n` (see $logfile for details)" | tee -a $srcdir/build.log exit $status fi -echo "Variant $buildvarpr successfully built on `uname -n` (see $logfile for details)" | tee $srcdir/build.log +echo "Variant $buildvarpr successfully built on `uname -n` (see $logfile for details)" | tee -a $srcdir/build.log exit 0 -- GitLab