diff options
author | marcus <marcus@FreeBSD.org> | 2004-01-21 16:11:18 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-01-21 16:11:18 +0000 |
commit | 3183b61e82e430cc1d3df9bcec487d4ac70740a2 (patch) | |
tree | bf7e425f58ce67a20bb1b9dc1ea87498176d4a3b /Tools | |
parent | 521e6c23b0f7173dc175fdccff20078aa1c8ca7d (diff) | |
download | FreeBSD-ports-3183b61e82e430cc1d3df9bcec487d4ac70740a2.zip FreeBSD-ports-3183b61e82e430cc1d3df9bcec487d4ac70740a2.tar.gz |
Comment out the munmap reason since it is quite unlikely this will be
encountered again, nad having it in there slows performance. However,
I'm leaving it in the file in case a bad bindist slips back in, and it
becomes convenient to uncomment this for purposes of seeing what build
failures are cluster-related.
Requested by: kris
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/portbuild/scripts/processonelog | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Tools/portbuild/scripts/processonelog b/Tools/portbuild/scripts/processonelog index 02cea30..e40491a 100755 --- a/Tools/portbuild/scripts/processonelog +++ b/Tools/portbuild/scripts/processonelog @@ -116,8 +116,8 @@ elif grep -qE '(/usr/libexec/elf/ld: cannot find|undefined reference to|cannot o reason="linker_error"; tag="ld" elif grep -qE 'chown:.*invalid argument' $1; then reason="chown"; tag="chown" -elif grep -qE 'cp:.*Invalid argument' $1; then - reason="munmap"; tag="munmap" +#elif grep -qE 'cp:.*Invalid argument' $1; then +# reason="munmap"; tag="munmap" elif grep -q 'install: .*: No such file' $1; then if grep -q 'install: /usr/local/www/cgi-bin.*No such file or directory' $1; then reason="cgi-bin"; tag="cgi-bin" @@ -224,8 +224,8 @@ elif grep -q "/usr/local/www/cgi-bin does not exist" $1; then reason="cgi-bin"; tag="cgi-bin" elif grep -qE "chown: .*\..*: Invalid argument" $1; then reason="chown"; tag="chown" -elif grep -qE "cp: .*: Invalid argument" $1; then - reason="munmap"; tag="munmap" +#elif grep -qE "cp: .*: Invalid argument" $1; then +# reason="munmap"; tag="munmap" elif grep -q "Cannot stat: " $1; then reason="configure_error"; tag="configure" elif grep -qE "Script.*configure.*failed unexpectedly" $1; then |