svn commit: r47258 - head/en_US.ISO8859-1/htdocs/ports
Glen Barber
gjb at FreeBSD.org
Tue Aug 18 17:54:52 UTC 2015
Author: gjb
Date: Tue Aug 18 17:54:51 2015
New Revision: 47258
URL: https://svnweb.freebsd.org/changeset/doc/47258
Log:
Fix case sensitivity of HOSTNAME evaluation.
Sponsored by: The FreeBSD Foundation
Modified:
head/en_US.ISO8859-1/htdocs/ports/Makefile
Modified: head/en_US.ISO8859-1/htdocs/ports/Makefile
==============================================================================
--- head/en_US.ISO8859-1/htdocs/ports/Makefile Tue Aug 18 10:41:49 2015 (r47257)
+++ head/en_US.ISO8859-1/htdocs/ports/Makefile Tue Aug 18 17:54:51 2015 (r47258)
@@ -25,7 +25,7 @@ ${INDEX}:
.endif
HOSTNAME!= hostname
-.if ${HOSTNAME} == "freefall.freebsd.org" || ${HOSTNAME} == "build-web.stream.FreeBSD.org"
+.if ${HOSTNAME} == "freefall.freebsd.org" || ${HOSTNAME} == "build-web.stream.freebsd.org"
CLUSTER_MACHINE= YES
.endif
More information about the svn-doc-head
mailing list