summaryrefslogtreecommitdiff
path: root/Tools
diff options
context:
space:
mode:
authorJoe Marcus Clarke <marcus@FreeBSD.org>2004-01-21 16:11:18 +0000
committerJoe Marcus Clarke <marcus@FreeBSD.org>2004-01-21 16:11:18 +0000
commit377ca431d9f28b529b678233f3e0094c9d7afa61 (patch)
tree0126078306b8857ba9c20c4001feadf79803c844 /Tools
parentUpdate to version 0.4: (diff)
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
Notes
Notes: svn path=/head/; revision=98701
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/portbuild/scripts/processonelog8
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