diff options
author | markm <markm@FreeBSD.org> | 1995-08-06 11:14:09 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1995-08-06 11:14:09 +0000 |
commit | 40c5e48c6022bcaa99a02ab3c1ee875be88c24ac (patch) | |
tree | ad003cf9d225d2b1e4ba36758fa8a9d34b6edd9c /lib/Makefile | |
parent | e7b61cf7cbb8a3a35876c3ed3b866d9cbb19ecdf (diff) | |
download | FreeBSD-src-40c5e48c6022bcaa99a02ab3c1ee875be88c24ac.zip FreeBSD-src-40c5e48c6022bcaa99a02ab3c1ee875be88c24ac.tar.gz |
Only build libtelnet if the secure libtelnet is not going to be built.
Reviewed by: rgrimes
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index 26750ff..96a409a 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -13,7 +13,11 @@ SUBDIR=csu/${MACHINE} SUBDIR+= libc libcompat libcom_err libcrypt libcurses libedit \ libf2c libforms \ libkvm libmd libmytinfo libncurses libpcap libresolv librpcsvc \ - libscsi libskey libss libtelnet libtermcap libutil liby + libscsi libskey libss libtermcap libutil liby + +.if !exists(../secure) || defined(NOSECURE) +SUBDIR+= libtelnet +.endif .if defined(WANT_CSRG_LIBM) SUBDIR+= libm |