Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Aug 2012 17:15:14 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r239739 - head/share/doc/smm
Message-ID:  <201208271715.q7RHFEO3029701@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Mon Aug 27 17:15:14 2012
New Revision: 239739
URL: http://svn.freebsd.org/changeset/base/239739

Log:
  Don't build and install the 07.lpd doc if WITHOUT_LPR is set.
  
  MFC after:	1 week

Modified:
  head/share/doc/smm/Makefile

Modified: head/share/doc/smm/Makefile
==============================================================================
--- head/share/doc/smm/Makefile	Mon Aug 27 16:42:32 2012	(r239738)
+++ head/share/doc/smm/Makefile	Mon Aug 27 17:15:14 2012	(r239739)
@@ -18,7 +18,7 @@ SUBDIR=	title \
 	04.quotas \
 	05.fastfs \
 	06.nfs \
-	07.lpd \
+	${_07.lpd} \
 	${_08.sendmailop} \
 	11.timedop \
 	12.timed \
@@ -28,4 +28,8 @@ SUBDIR=	title \
 _08.sendmailop=	08.sendmailop 
 .endif
 
+.if ${MK_LPR} != "no"
+_07.lpd=	07.lpd
+.endif
+
 .include <bsd.subdir.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201208271715.q7RHFEO3029701>