summaryrefslogtreecommitdiff
path: root/libexec/rlogind
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-04-19 21:26:35 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-04-19 21:26:35 +0000
commit60f0cc8b06f6b2a732dba45282047230a78eab47 (patch)
tree095b6ccdab3a498288710207dff5b8c76acad921 /libexec/rlogind
parent11de9e6ceccf61da35fe169021912e46267d7f74 (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/rlogind')
-rw-r--r--libexec/rlogind/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/rlogind/Makefile b/libexec/rlogind/Makefile
index c719007b79e..5c7fb71bd13 100644
--- a/libexec/rlogind/Makefile
+++ b/libexec/rlogind/Makefile
@@ -1,5 +1,5 @@
# from: @(#)Makefile 8.1 (Berkeley) 6/4/93
-# $Id: Makefile,v 1.2 1995/12/16 22:20:19 tholo Exp $
+# $Id: Makefile,v 1.3 1997/04/19 21:26:20 millert Exp $
PROG= rlogind
SRCS= rlogind.c
@@ -9,7 +9,7 @@ LDADD= -lutil
.include <bsd.own.mk> # For KERBEROS
-.if defined(KERBEROS)
+.if (${KERBEROS} == "yes")
SRCS= rlogind.c des_rw.c
.PATH: ${.CURDIR}/../../usr.bin/rlogin
CFLAGS+=-DKERBEROS