diff options
author | Satoshi Asami <asami@FreeBSD.org> | 2000-10-09 01:37:22 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 2000-10-09 01:37:22 +0000 |
commit | 423990e4c205086cbc30405e407ff24042238fd1 (patch) | |
tree | 0b6d8605b04faab1540638256d95d10963aba342 /Tools/portbuild | |
parent | 3fb236c8a4507efb1828ff7711c4450d8d6b0960 (diff) | |
download | ports-423990e4c205086cbc30405e407ff24042238fd1.tar.gz ports-423990e4c205086cbc30405e407ff24042238fd1.zip |
Notes
Diffstat (limited to 'Tools/portbuild')
-rwxr-xr-x | Tools/portbuild/scripts/processlogs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/portbuild/scripts/processlogs b/Tools/portbuild/scripts/processlogs index e72256a84e62..dc606fd41caf 100755 --- a/Tools/portbuild/scripts/processlogs +++ b/Tools/portbuild/scripts/processlogs @@ -54,7 +54,7 @@ else elif grep -q 'Checksum mismatch' $1; then reason="checksum"; tag="checksum" elif grep -qE '(No checksum recorded for|(Maybe|Either) .* is out of date, or)' $1; then - reason="files/md5 update"; tag="md5" + reason="distinfo update"; tag="distinfo" elif grep -qE '(configure: error:|script.*failed: here are the contents of)' $1; then reason="configure error"; tag="configure" elif grep -qE '(bison:.*(No such file|not found)|multiple definition of `yy)' $1; then @@ -82,7 +82,7 @@ else elif grep -qE "(crt0|c\+\+rt0)\.o: No such file" $1; then reason="ELF"; tag="elf" elif grep -q ".*\.h: No such file" $1; then - if grep -q "X11/.*\.h: No such file" $1; then + if grep -qE "(X11/.*|Xosdefs)\.h: No such file" $1; then if grep -q "XFree86-.*\.tgz" $1; then reason="missing header"; tag="header" else |