From d96349f0a1340a640a439992c6333c13d2bea7ad Mon Sep 17 00:00:00 2001
From: Wolfram Schneider <wosch@FreeBSD.org>
Date: Wed, 15 Sep 1999 20:34:35 +0000
Subject: [PATCH] Fix revision 1.14: don't build the committers guide if the
 variable WEB_ONLY is set.

make -> ${MAKE}
---
 en/internal/Makefile | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/en/internal/Makefile b/en/internal/Makefile
index bd3276a82b..1cc980eb2b 100644
--- a/en/internal/Makefile
+++ b/en/internal/Makefile
@@ -1,4 +1,4 @@
-# $FreeBSD$
+# $FreeBSD: www/en/internal/Makefile,v 1.15 1999/09/06 07:02:45 peter Exp $
 
 .if exists(../Makefile.conf)
 .include "../Makefile.conf"
@@ -12,7 +12,9 @@ DOCS+= 	mirror.sgml
 DOCS+=	statistic.sgml
 DOCS+= 	developer.sgml
 
+.if !defined(WEB_ONLY) || empty(WEB_ONLY)
 LOCAL=  committers-guide.html
+.endif
 
 committers-guide.html: ../../../doc/en_US.ISO_8859-1/articles/committers-guide/article.sgml
 	(cd ../../../doc/en_US.ISO_8859-1/articles/committers-guide && make FORMATS=html INSTALL_COMPRESSED='')