aboutsummaryrefslogtreecommitdiff
path: root/share/doc/smm
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2012-08-27 17:15:14 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2012-08-27 17:15:14 +0000
commit5a3cebd1e81105ba6096d0e5cb8f7eb1c7e03c47 (patch)
treed65842aadd710e7dcf750a94ec571ff4aca28fc9 /share/doc/smm
parent6b21af5af48c7de92d2c25200015e99b9020ced5 (diff)
downloadsrc-5a3cebd1e81105ba6096d0e5cb8f7eb1c7e03c47.tar.gz
src-5a3cebd1e81105ba6096d0e5cb8f7eb1c7e03c47.zip
Don't build and install the 07.lpd doc if WITHOUT_LPR is set.
MFC after: 1 week
Notes
Notes: svn path=/head/; revision=239739
Diffstat (limited to 'share/doc/smm')
-rw-r--r--share/doc/smm/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/share/doc/smm/Makefile b/share/doc/smm/Makefile
index bfbea5b3a497..fd42bd4d53a6 100644
--- a/share/doc/smm/Makefile
+++ b/share/doc/smm/Makefile
@@ -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>