From 60f0cc8b06f6b2a732dba45282047230a78eab47 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Sat, 19 Apr 1997 21:26:35 +0000 Subject: 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. --- usr.bin/rsh/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/rsh/Makefile') diff --git a/usr.bin/rsh/Makefile b/usr.bin/rsh/Makefile index c9958fe03ab..8664d7c31c1 100644 --- a/usr.bin/rsh/Makefile +++ b/usr.bin/rsh/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1996/06/26 05:38:48 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 1997/04/19 21:26:29 millert Exp $ PROG= rsh SRCS= rsh.c @@ -7,7 +7,7 @@ BINMODE=4555 .include # For KERBEROS -.if defined(KERBEROS) +.if (${KERBEROS} == "yes") SRCS+= des_rw.c .PATH: ${.CURDIR}/../rlogin CFLAGS+=-DKERBEROS -- cgit v1.2.3