From: <rap...@us...> - 2003-12-20 03:36:45
|
Update of /cvsroot/devil-linux/build/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv5134/scripts Modified Files: build.sh Log Message: added option to disable logging on build process Index: build.sh =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/build.sh,v retrieving revision 1.61 retrieving revision 1.62 diff -u -d -r1.61 -r1.62 --- build.sh 17 Dec 2003 14:55:47 -0000 1.61 +++ build.sh 20 Dec 2003 03:36:42 -0000 1.62 @@ -289,7 +289,11 @@ t1=$(date +"%s") if [ -z "$RUN_ONLY_CMD" ];then - $MYDIR/$SCRIPT $CMD &> $WORKDIR/LOGS/$CMD/$SCRIPT + if [ -z "$CONFIG_DISABLELOGGING" ]; then + $MYDIR/$SCRIPT $CMD &> $WORKDIR/LOGS/$CMD/$SCRIPT + else + $MYDIR/$SCRIPT $CMD + fi else $MYDIR/$SCRIPT $CMD fi |