summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorscottr <scottr@NetBSD.org>1998-07-27 04:16:19 +0000
committerscottr <scottr@NetBSD.org>1998-07-27 04:16:19 +0000
commitb894fb7eedcdcdb97c35d80c8421375dcf6bdd45 (patch)
tree38da84695b01a9099e1349e29307a48f571124bd /libexec
parent0e1307776f6a175ad60b2c52517eb49894b420c6 (diff)
Fix two problems with my previous change:
- We must include bsd.own.mk to get EXPORTABLE_SYSTEM from mk.conf. Noted by Bernd Ernesti. - If we're only generating man pages, we should deal with obj directories as appropriate. Both Perry Metzger and I found this independently. This completes the tasks necessary to close PR 5519.
Diffstat (limited to 'libexec')
-rw-r--r--libexec/telnetd/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/libexec/telnetd/Makefile b/libexec/telnetd/Makefile
index 72933f9b6c9..16d4c195793 100644
--- a/libexec/telnetd/Makefile
+++ b/libexec/telnetd/Makefile
@@ -1,6 +1,8 @@
-# $NetBSD: Makefile,v 1.12 1998/07/22 22:30:07 scottr Exp $
+# $NetBSD: Makefile,v 1.13 1998/07/27 04:16:20 scottr Exp $
# from: @(#)Makefile 8.2 (Berkeley) 12/15/93
+.include <bsd.own.mk> # for EXPORTABLE_SYSTEM definition
+
MAN= telnetd.8
# XXX Keep telnetd(8) and libtelnet from getting out of sync during the build
@@ -20,6 +22,7 @@ LDADD+= -lutil -ltermcap -ltelnet
.include <bsd.prog.mk>
.else # EXPORTABLE_SYSTEM
+.include <bsd.obj.mk>
.include <bsd.man.mk>
.endif # EXPORTABLE_SYSTEM