diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2006-07-31 20:05:12 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2006-07-31 20:05:12 +0000 |
commit | 4ab6687b05f94206ec2bee942c018c2e710fb448 (patch) | |
tree | ecb360ef9de845358408f7bc68a570f52829aa85 /Tools | |
parent | 4fa7beb66af42ea08ddfa6502fc855c6ea3bf850 (diff) | |
download | ports-4ab6687b05f94206ec2bee942c018c2e710fb448.tar.gz ports-4ab6687b05f94206ec2bee942c018c2e710fb448.zip |
Notes
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 5cd4bf92f54f..c054461f8993 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|create):.*(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" |