=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/Makefile,v retrieving revision 1.53 retrieving revision 1.54 diff -c -r1.53 -r1.54 *** src/Makefile 2000/03/01 03:56:41 1.53 --- src/Makefile 2000/03/10 22:05:49 1.54 *************** *** 1,4 **** ! # $OpenBSD: Makefile,v 1.53 2000/03/01 03:56:41 todd Exp $ # # For more information on building in tricky environments, please see --- 1,4 ---- ! # $OpenBSD: Makefile,v 1.54 2000/03/10 22:05:49 niklas Exp $ # # For more information on building in tricky environments, please see *************** *** 83,88 **** --- 83,92 ---- ${SUDO} ${MAKE} install) (cd ${.CURDIR}/gnu/lib && ${MAKE} depend && ${MAKE} && \ ${SUDO} ${MAKE} install) + .if (${KERBEROS} == "yes") + (cd ${.CURDIR}/kerberosIV/lib && ${MAKE} depend && ${MAKE} && \ + ${SUDO} ${MAKE} install) + .endif (cd ${.CURDIR}/gnu/usr.bin/perl && \ ${MAKE} -f Makefile.bsd-wrapper config.sh && \ ${MAKE} -f Makefile.bsd-wrapper depend && \ *************** *** 90,101 **** ${SUDO} ${MAKE} -f Makefile.bsd-wrapper install.lib) .if (${MACHINE_ARCH} == "mips") ldconfig - .endif - .if (${KERBEROS} == "yes") - (cd ${.CURDIR}/kerberosIV && ${MAKE} SUDO=${SUDO} build) - .if (${MACHINE_ARCH} == "mips") - ldconfig - .endif .endif ${MAKE} depend && ${MAKE} && ${SUDO} ${MAKE} install --- 94,99 ----