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
This commit is contained in:
Joe Marcus Clarke 2004-01-21 16:11:18 +00:00
parent cf5450acfb
commit 377ca431d9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=98701

View File

@ -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