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 /distrib/i386/floppies/common | |
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 'distrib/i386/floppies/common')
-rw-r--r-- | distrib/i386/floppies/common/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/i386/floppies/common/Makefile.inc b/distrib/i386/floppies/common/Makefile.inc index 83311afb00f..e5e12e77e87 100644 --- a/distrib/i386/floppies/common/Makefile.inc +++ b/distrib/i386/floppies/common/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.2 1997/04/17 02:10:31 niklas Exp $ +# $OpenBSD: Makefile.inc,v 1.3 1997/04/19 21:26:11 millert Exp $ # TOP is assumed to be defined by Makefile including this one. @@ -15,7 +15,7 @@ REALIMAGE= /tmp/image.${PID} MDEC= ${DESTDIR}/usr/mdec LISTS= ${COMMONDIR}/list ${.CURDIR}/list -.if defined(KERBEROS) +.if (${KERBEROS} == "yes") CRUNCHCONF= ${COMMONDIR}/${CBIN}-krb.conf .else CRUNCHCONF= ${COMMONDIR}/${CBIN}.conf @@ -58,7 +58,7 @@ ${CBIN}.mk ${CBIN}.cache ${CBIN}.c: ${CRUNCHCONF} ${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c make -f ${CBIN}.mk all -.if defined(KERBEROS) +.if (${KERBEROS} == "yes") mv ${CBIN}-krb ${CBIN} .endif |