diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2006-08-18 19:23:19 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2006-08-18 19:23:19 +0000 |
commit | 8765aa08c8c22bb9f264169c50e0f777bf3a9652 (patch) | |
tree | 00897a15159106d48403e4b16156d4c3d8b1670a /Tools | |
parent | c9623ef0581f2462f30fc05b803596108128c885 (diff) |
Notes
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/processonelog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/portbuild/scripts/processonelog b/Tools/portbuild/scripts/processonelog index c054461f8993..1140e46c5118 100755 --- a/Tools/portbuild/scripts/processonelog +++ b/Tools/portbuild/scripts/processonelog @@ -200,6 +200,8 @@ elif grep -qE "automake(.*): not found" $1; then reason="automake"; tag="automake" elif grep -q "/usr/local/www/cgi-bin does not exist" $1; then reason="cgi-bin"; tag="cgi-bin" +elif grep -q "Shared object \"libc.so.6\" not found, required by" $1; then + reason="compat6x"; tag="compat6x" elif grep -q "Cannot open /dev/tty for read" $1; then reason="DISPLAY"; tag="display" elif grep -q "RuntimeError: cannot open display" $1; then @@ -272,6 +274,8 @@ elif grep -qE '(gmake:.*Error [12]|tar: Error exit delayed from previous errors) reason="install_error"; tag="install" elif grep -q "Cannot stat: " $1; then reason="configure_error"; tag="configure" +elif grep -q "/usr/bin/ld: cannot find -l" $1; then + reason="linker_error"; tag="ld" elif grep -q "cd: can't cd to" $1; then reason="NFS"; tag="nfs" elif grep -q "pkg_create: make_dist: tar command failed with code" $1; then |