diff options
author | markm <markm@FreeBSD.org> | 1995-08-06 11:20:35 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1995-08-06 11:20:35 +0000 |
commit | 3b83fc95908a1fdb09ea2f5ed4266ba6ff7a0bc1 (patch) | |
tree | 0d9ea5d005b145784edeae4b746f06ca7aa29cc3 /libexec/Makefile | |
parent | 452c8234aa9098e7d44eb86fe53a4cff5dc6c41d (diff) | |
download | FreeBSD-src-3b83fc95908a1fdb09ea2f5ed4266ba6ff7a0bc1.zip FreeBSD-src-3b83fc95908a1fdb09ea2f5ed4266ba6ff7a0bc1.tar.gz |
Only build telnetd if secure telnetd is not going to be built.
Reviewed by: rgrimes
Diffstat (limited to 'libexec/Makefile')
-rw-r--r-- | libexec/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libexec/Makefile b/libexec/Makefile index a8e225f..ffebb8b 100644 --- a/libexec/Makefile +++ b/libexec/Makefile @@ -2,7 +2,11 @@ SUBDIR= atrun bootpd bootpgw comsat fingerd ftpd getNAME getty lfs_cleanerd \ mail.local makekey rexecd rlogind rpc.rstatd rpc.rusersd \ - rpc.rwalld rshd talkd telnetd tftpd uucpd xtend + rpc.rwalld rshd talkd tftpd uucpd xtend + +.if !exists(../secure) || defined(NOSECURE) +SUBDIR+=telnetd +.endif # Present but disabled: kpasswdd |