aboutsummaryrefslogtreecommitdiffstats
path: root/Tools/portbuild
diff options
context:
space:
mode:
authorlinimon <linimon@FreeBSD.org>2006-08-01 04:05:12 +0800
committerlinimon <linimon@FreeBSD.org>2006-08-01 04:05:12 +0800
commit4c333198dbc5ce0ef8937af8d989ae918127271b (patch)
treefa02659863d76e96b6a036439df07a0a9da4334a /Tools/portbuild
parent6a8580cbcc2b0959a072f1c9022457db622a5c0e (diff)
downloadfreebsd-ports-gnome-4c333198dbc5ce0ef8937af8d989ae918127271b.tar.gz
freebsd-ports-gnome-4c333198dbc5ce0ef8937af8d989ae918127271b.tar.zst
freebsd-ports-gnome-4c333198dbc5ce0ef8937af8d989ae918127271b.zip
Catch another case of 'disk full'.
Diffstat (limited to 'Tools/portbuild')
-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 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"