aboutsummaryrefslogtreecommitdiff
path: root/secure/usr.bin/Makefile
diff options
context:
space:
mode:
authorMark Murray <markm@FreeBSD.org>1999-10-12 19:48:05 +0000
committerMark Murray <markm@FreeBSD.org>1999-10-12 19:48:05 +0000
commit1a19815c149b6192d03aff6710fbc4cc290e4517 (patch)
tree88716f8dd69d76dabfe8ec20d2e4851e18e7e75b /secure/usr.bin/Makefile
parentc3737d34ba2cc3fe0e71b179a7560e777b877171 (diff)
downloadsrc-1a19815c149b6192d03aff6710fbc4cc290e4517.tar.gz
src-1a19815c149b6192d03aff6710fbc4cc290e4517.zip
Dont build telenet if we are going for kerberised telnet; this just
jumps all over kerberised telnet otherwise.
Notes
Notes: svn path=/head/; revision=52167
Diffstat (limited to 'secure/usr.bin/Makefile')
-rw-r--r--secure/usr.bin/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/secure/usr.bin/Makefile b/secure/usr.bin/Makefile
index 0b1fc8ac992e..f711c0a389cd 100644
--- a/secure/usr.bin/Makefile
+++ b/secure/usr.bin/Makefile
@@ -1,6 +1,8 @@
# $FreeBSD$
-SUBDIR= bdes telnet
+SUBDIR= bdes
+.if !defined(NOCRYPT) && !defined(MAKE_KERBEROS4)
+SUBDIR+=telnet
+.endif
.include <bsd.subdir.mk>
-