summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorMark Linimon <linimon@FreeBSD.org>2006-07-08 20:29:41 +0000
committerMark Linimon <linimon@FreeBSD.org>2006-07-08 20:29:41 +0000
commited5aedd9d3753e061c5baa3685f677d5b8d6890d (patch)
tree32816849ead7413e041acf91d4e44b12e5b9f99a /Tools
parent32b1c316ff8a534f4f3eed0d70be58a84f4b885e (diff)
downloadfreebsd-ports-ed5aedd9d3753e061c5baa3685f677d5b8d6890d.zip
Fix the disk_full rule.
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/portbuild/scripts/processonelog2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/processonelog b/Tools/portbuild/scripts/processonelog
index ec4e9c1ca99f..a96b86ce4d3d 100755
--- a/Tools/portbuild/scripts/processonelog
+++ b/Tools/portbuild/scripts/processonelog
@@ -90,7 +90,7 @@ elif grep -q "USER PID PPID PGID JOBC STAT TT TIME COMMAND" $1; then
reason="runaway_process"; tag="runaway"
elif grep -q "pnohang: killing make package" $1; then
reason="runaway_process"; tag="runaway"
-elif grep -qE "pkg_add: (can't find enough temporary space|projected size of .* exceeds available free space)" $1; then
+elif grep -qE "pkg_add:.*(can't find enough temporary space|projected size of .* exceeds available free space)" $1; then
reason="disk_full"; tag="df"
elif grep -qE '(parse error|too (many|few) arguments to|argument.*doesn.*prototype|incompatible type for argument|conflicting types for|undeclared \(first use (in |)this function\)|incorrect number of parameters|has incomplete type and cannot be initialized|error: storage size.* isn.t known)' $1; then
reason="compiler_error"; tag="cc"