aboutsummaryrefslogtreecommitdiffstats
path: root/Tools/portbuild
diff options
context:
space:
mode:
authorlinimon <linimon@FreeBSD.org>2007-02-14 12:16:30 +0800
committerlinimon <linimon@FreeBSD.org>2007-02-14 12:16:30 +0800
commit630a09ec51be8c3ad946c18ea02edd856e42d02b (patch)
treec8ee5b46c3cfd3b65034a30d40b756831922736f /Tools/portbuild
parentf0c5c19ce1f4d90fc5793bf66f85a9fdbbc17ec6 (diff)
downloadfreebsd-ports-gnome-630a09ec51be8c3ad946c18ea02edd856e42d02b.tar.gz
freebsd-ports-gnome-630a09ec51be8c3ad946c18ea02edd856e42d02b.tar.zst
freebsd-ports-gnome-630a09ec51be8c3ad946c18ea02edd856e42d02b.zip
Eliminate some false positives for missing_header, sometimes seen in the
configure step.
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 992d2ffea847..7466ef6ce841 100755
--- a/Tools/portbuild/scripts/processonelog
+++ b/Tools/portbuild/scripts/processonelog
@@ -55,7 +55,7 @@ elif bzgrep -q "Couldn't fetch it - please try" $1; then
reason="fetch"; tag="fetch"
elif bzgrep -q "Error: shared library \".*\" does not exist" $1; then
reason="LIB_DEPENDS"; tag="libdepends"
-elif bzgrep -q ".*\.h: No such file" $1; then
+elif bzgrep -qE "\.(c|cc|ccx|cpp|h|y)[1-9:]+ .+\.h: No such file" $1; then
if bzgrep -qE "(X11/.*|Xosdefs)\.h: No such file" $1; then
if bzgrep -q "XFree86-.*\.tgz" $1; then
reason="missing_header"; tag="header"