diff options
author | markm <markm@FreeBSD.org> | 1997-10-02 15:03:23 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1997-10-02 15:03:23 +0000 |
commit | 0d52c7fc1db805f118616e838052b87de6a088a1 (patch) | |
tree | fbda225b8fc038a2a5672f21ca4dc28a0c552e0c /kerberos5 | |
parent | d03dfc94fa5b6c11798a2c69b3139a5b94348ee5 (diff) | |
download | FreeBSD-src-0d52c7fc1db805f118616e838052b87de6a088a1.zip FreeBSD-src-0d52c7fc1db805f118616e838052b87de6a088a1.tar.gz |
Fix a break in the includes where the build blows chunks if it is
being built in a totally clean environment.
Found by: jkh and "make release"
Diffstat (limited to 'kerberos5')
-rw-r--r-- | kerberos5/lib/libtelnet/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kerberos5/lib/libtelnet/Makefile b/kerberos5/lib/libtelnet/Makefile index 334caf7..e561da1 100644 --- a/kerberos5/lib/libtelnet/Makefile +++ b/kerberos5/lib/libtelnet/Makefile @@ -5,7 +5,8 @@ LIB= telnet SRCS= genget.c getent.c misc.c encrypt.c auth.c kerberos.c enc_des.c CFLAGS+= -DHAS_CGETENT -DENCRYPTION -DDES_ENCRYPTION -DAUTHENTICATION \ - -DKRB4 -I${TELNETDIR} + -DKRB4 -I${TELNETDIR} \ + -I${KRB4DIR}/lib/krb INCLUDES= ${TELNETDIR}/arpa/telnet.h |