summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorMark Linimon <linimon@FreeBSD.org>2007-02-14 04:16:30 +0000
committerMark Linimon <linimon@FreeBSD.org>2007-02-14 04:16:30 +0000
commit385bfc1533bf063e7595948dffadebab0e8e652f (patch)
treebd199eaf1bd8efa24cda1f6061a29578d941aa18 /Tools
parentAdd rubygem-tidy 1.1.2, ruby interface to HTML Tidy Library Project. (diff)
Eliminate some false positives for missing_header, sometimes seen in the
configure step.
Notes
Notes: svn path=/head/; revision=185139
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 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"