diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-19 21:26:35 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-19 21:26:35 +0000 |
commit | 60f0cc8b06f6b2a732dba45282047230a78eab47 (patch) | |
tree | 095b6ccdab3a498288710207dff5b8c76acad921 /libexec/rshd/Makefile | |
parent | 11de9e6ceccf61da35fe169021912e46267d7f74 (diff) |
Changed ``defined(KERBEROS)'' to ``(${KERBEROS} == "yes")''
Same change doen for SKEY, YP, and KERBEROS5. This allows
people to override those setting in /etc/mk.conf.
Diffstat (limited to 'libexec/rshd/Makefile')
-rw-r--r-- | libexec/rshd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/rshd/Makefile b/libexec/rshd/Makefile index 07db1e49e19..ce0844b24fc 100644 --- a/libexec/rshd/Makefile +++ b/libexec/rshd/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 8.1 (Berkeley) 6/4/93 -# $Id: Makefile,v 1.2 1995/12/16 22:20:22 tholo Exp $ +# $Id: Makefile,v 1.3 1997/04/19 21:26:21 millert Exp $ PROG= rshd SRCS= rshd.c @@ -7,7 +7,7 @@ MAN= rshd.8 .include <bsd.own.mk> -.if defined(KERBEROS) +.if (${KERBEROS} == "yes") SRCS+= des_rw.c .PATH: ${.CURDIR}/../../usr.bin/rlogin CFLAGS+=-DKERBEROS |