summaryrefslogtreecommitdiff
path: root/Makefile
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 /Makefile
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 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 195076a1d7a..6ecff842358 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.16 1997/04/18 06:47:08 deraadt Exp $
+# $OpenBSD: Makefile,v 1.17 1997/04/19 21:26:09 millert Exp $
# $NetBSD: Makefile,v 1.25 1995/10/09 02:11:28 thorpej Exp $
#
@@ -28,7 +28,7 @@ SUBDIR+= gnu
SUBDIR+= sys lkm
-.if defined(KERBEROS)
+.if (${KERBEROS} == "yes")
SUBDIR+= kerberosIV
.endif
@@ -67,7 +67,7 @@ build:
.if (${MACHINE_ARCH} == "mips")
ldconfig
.endif
-.if defined(KERBEROS)
+.if (${KERBEROS} == "yes")
(cd ${.CURDIR}/kerberosIV && ${MAKE} build)
.endif
${MAKE} depend && ${MAKE} && ${MAKE} install