summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-02-02 03:37:50 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-02-02 03:37:50 +0000
commit6b264ccd5c9f3d2837ee219fc2ab3420239e03a4 (patch)
tree69b63d1c80ed46b3602833758396a4942406577d /usr.sbin
parentbbb6854469f489398acd57f352b9bedc2ea4c04c (diff)
We don't need to include bsd.man.mk explicitly, bsd.lib.mk pulls
it in if it is needed. We do need a fake maninstall target ifdef NOMAN though. This prevents dhcp-options.5 from being installed if NOMAN is set.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/dhcp/common/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/dhcp/common/Makefile b/usr.sbin/dhcp/common/Makefile
index 81dde6c6478..d45317c49fe 100644
--- a/usr.sbin/dhcp/common/Makefile
+++ b/usr.sbin/dhcp/common/Makefile
@@ -42,4 +42,7 @@ NOPROFILE=yes
install: maninstall
.include <bsd.lib.mk>
-.include <bsd.man.mk>
+.ifdef NOMAN
+maninstall:
+ @echo NOMAN is set
+.endif