summaryrefslogtreecommitdiff
path: root/usr.sbin/rpc.bootparamd
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 /usr.sbin/rpc.bootparamd
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 'usr.sbin/rpc.bootparamd')
-rw-r--r--usr.sbin/rpc.bootparamd/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/rpc.bootparamd/Makefile b/usr.sbin/rpc.bootparamd/Makefile
index d984ea4109e..cbeaa8addc1 100644
--- a/usr.sbin/rpc.bootparamd/Makefile
+++ b/usr.sbin/rpc.bootparamd/Makefile
@@ -1,8 +1,8 @@
-# $Id: Makefile,v 1.2 1996/09/04 22:52:09 deraadt Exp $
+# $Id: Makefile,v 1.3 1997/04/19 21:26:33 millert Exp $
.include <bsd.own.mk>
-.if defined(YP)
+.if (${YP} == "yes")
CFLAGS+=-DYP
.endif