diff options
author | linimon <linimon@FreeBSD.org> | 2006-07-08 20:29:41 +0000 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2006-07-08 20:29:41 +0000 |
commit | 4f4ad4b2c1cc8e937d2b8da4edfa10ebe041ca3a (patch) | |
tree | bfeecc54dd1a2da16b1f98abec2a0b9ca888ff4c /Tools | |
parent | 7d7194ae9f397d5852c8ad07bf6e5f189e7af324 (diff) | |
download | FreeBSD-ports-4f4ad4b2c1cc8e937d2b8da4edfa10ebe041ca3a.zip FreeBSD-ports-4f4ad4b2c1cc8e937d2b8da4edfa10ebe041ca3a.tar.gz |
Fix the disk_full rule.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/processonelog | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/portbuild/scripts/processonelog b/Tools/portbuild/scripts/processonelog index ec4e9c1..a96b86c 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" |