svn commit: r236031 - projects/portbuild/scripts

Mark Linimon linimon at FreeBSD.org
Fri May 25 23:41:22 UTC 2012


Author: linimon (doc,ports committer)
Date: Fri May 25 23:41:22 2012
New Revision: 236031
URL: http://svn.freebsd.org/changeset/base/236031

Log:
  Fix test for "incomplete build".
  
  Spotted by:	jilles

Modified:
  projects/portbuild/scripts/processonelog

Modified: projects/portbuild/scripts/processonelog
==============================================================================
--- projects/portbuild/scripts/processonelog	Fri May 25 23:24:16 2012	(r236030)
+++ projects/portbuild/scripts/processonelog	Fri May 25 23:41:22 2012	(r236031)
@@ -178,7 +178,7 @@ elif bzgrep -q "Segmentation fault" $1; 
   reason="segfault"; tag="segfault"
 
 # note: searching for string-not-found here (builds that terminated early)
-elif [ ! bzgrep -qE "^build of .* ended at" $1 ]; then
+elif ! bzgrep -qE "^build of .* ended at" $1; then
   reason="cluster"; tag="cluster"
 
 else


More information about the svn-src-projects mailing list