svn commit: r241111 - stable/9/share/doc/smm

John Baldwin jhb at FreeBSD.org
Mon Oct 1 19:13:48 UTC 2012


Author: jhb
Date: Mon Oct  1 19:13:47 2012
New Revision: 241111
URL: http://svn.freebsd.org/changeset/base/241111

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

Modified:
  stable/9/share/doc/smm/Makefile
Directory Properties:
  stable/9/share/doc/smm/   (props changed)

Modified: stable/9/share/doc/smm/Makefile
==============================================================================
--- stable/9/share/doc/smm/Makefile	Mon Oct  1 19:09:25 2012	(r241110)
+++ stable/9/share/doc/smm/Makefile	Mon Oct  1 19:13:47 2012	(r241111)
@@ -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-all mailing list