diff options
author | ngie <ngie@FreeBSD.org> | 2015-01-25 04:37:44 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-01-25 04:37:44 +0000 |
commit | 21e793b32c614e38da078f83deaccb050e5875cb (patch) | |
tree | c5ac4d5a5a79385285523dadacf8d78efb0d5b4b /libexec | |
parent | 29002c447a2be3066b7fa926c39a37caedd45c4f (diff) | |
download | FreeBSD-src-21e793b32c614e38da078f83deaccb050e5875cb.zip FreeBSD-src-21e793b32c614e38da078f83deaccb050e5875cb.tar.gz |
Add MK_TALK knob for building the talk and talkd
MFC after: 2 weeks
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libexec/Makefile b/libexec/Makefile index 7d1c1f8..c8b5386 100644 --- a/libexec/Makefile +++ b/libexec/Makefile @@ -28,7 +28,6 @@ SUBDIR= ${_atf} \ ${_rtld-elf} \ save-entropy \ ${_smrsh} \ - talkd \ tcpd \ ${_telnetd} \ ${_tests} \ @@ -81,6 +80,10 @@ _mail.local= mail.local _smrsh= smrsh .endif +.if ${MK_TALK} != "no" +SUBDIR+= talkd +.endif + .if ${MK_TELNET} != "no" _telnetd= telnetd .endif |