Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Oct 2012 19:13:47 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r241111 - stable/9/share/doc/smm
Message-ID:  <201210011913.q91JDlcH099455@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



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