svn commit: r239739 - head/share/doc/smm

John Baldwin jhb at FreeBSD.org
Mon Aug 27 17:15:15 UTC 2012


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>


More information about the svn-src-head mailing list