diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-01-21 16:11:18 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-01-21 16:11:18 +0000 |
commit | 377ca431d9f28b529b678233f3e0094c9d7afa61 (patch) | |
tree | 0126078306b8857ba9c20c4001feadf79803c844 /Tools | |
parent | cf5450acfbcfd980cd8b8a910cd0778139edee40 (diff) | |
download | ports-377ca431d9f28b529b678233f3e0094c9d7afa61.tar.gz ports-377ca431d9f28b529b678233f3e0094c9d7afa61.zip |
Notes
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 02cea306bac6..e40491af730c 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 |