aboutsummaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorlinimon <linimon@FreeBSD.org>2006-12-26 02:09:34 +0800
committerlinimon <linimon@FreeBSD.org>2006-12-26 02:09:34 +0800
commiteceec5128661fb39c95c4501358db1ba33298dd0 (patch)
treea719f01d2ae5c2257fca1cb4fa4291f971a64620 /Tools
parent999874541b9c95e955bb6b4bb56ed98619db58a3 (diff)
downloadfreebsd-ports-gnome-eceec5128661fb39c95c4501358db1ba33298dd0.tar.gz
freebsd-ports-gnome-eceec5128661fb39c95c4501358db1ba33298dd0.tar.zst
freebsd-ports-gnome-eceec5128661fb39c95c4501358db1ba33298dd0.zip
Eliminate more false positives for install_error. Very noticeable on
latest gcc test build.
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 8f2719512935..2ea66637de8f 100755
--- a/Tools/portbuild/scripts/processonelog
+++ b/Tools/portbuild/scripts/processonelog
@@ -275,7 +275,7 @@ elif bzgrep -q "shminit failed: Permission denied" $1; then
# types of errors, and thus need to be evaluated after all the specific
# cases.
-elif bzgrep -qE '(gmake:.*Error [12]|tar: Error exit delayed from previous errors)' $1; then
+elif bzgrep -q 'tar: Error exit delayed from previous errors' $1; then
reason="install_error"; tag="install"
elif bzgrep -q "Cannot stat: " $1; then
reason="configure_error"; tag="configure"