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/sparc | |
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/sparc')
-rw-r--r-- | distrib/sparc/floppies/inst-common/Makefile.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/sparc/floppies/inst-common/Makefile.inc b/distrib/sparc/floppies/inst-common/Makefile.inc index db250a9e23e..824ccd6ae32 100644 --- a/distrib/sparc/floppies/inst-common/Makefile.inc +++ b/distrib/sparc/floppies/inst-common/Makefile.inc @@ -1,4 +1,4 @@ -# $Id: Makefile.inc,v 1.5 1997/03/31 07:36:05 deraadt Exp $ +# $Id: Makefile.inc,v 1.6 1997/04/19 21:26:12 millert Exp $ # TOP is assumed to be defined by Makefile including this one. @@ -15,7 +15,7 @@ IMAGE?= inst${REV}.fs 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 @@ -49,7 +49,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 |