From ee63e7dc15cc9a4f4ef4c40ed7ae743aa0706003 Mon Sep 17 00:00:00 2001 From: markm Date: Mon, 5 May 2003 07:58:44 +0000 Subject: Turn MAKE_KERBEROS5 into NO_KERBEROS by negating the logic. Some extra cleanups were necessary in release/Makefile, and the tinderbox code was syntax checked, not run checked. --- kerberos5/Makefile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'kerberos5') diff --git a/kerberos5/Makefile b/kerberos5/Makefile index 144cc70..3681fbd 100644 --- a/kerberos5/Makefile +++ b/kerberos5/Makefile @@ -9,22 +9,22 @@ KPROGS= lib/libpam secure/lib/libssh secure/usr.bin/ssh secure/usr.sbin/sshd kerberize: .for entry in ${KPROGS} cd ${.CURDIR}/../${entry}; \ - ${MAKE} ${MFLAGS} -DMAKE_KERBEROS5 cleandir; \ - ${MAKE} ${MFLAGS} -DMAKE_KERBEROS5 obj; \ - ${MAKE} ${MFLAGS} -DMAKE_KERBEROS5 depend; \ - ${MAKE} ${MFLAGS} -DMAKE_KERBEROS5 all; \ - ${MAKE} ${MFLAGS} -DMAKE_KERBEROS5 install + ${MAKE} ${MFLAGS} cleandir; \ + ${MAKE} ${MFLAGS} obj; \ + ${MAKE} ${MFLAGS} depend; \ + ${MAKE} ${MFLAGS} all; \ + ${MAKE} ${MFLAGS} install .endfor # This target is used to rebuild these programs WITHOUT Kerberos. dekerberize: .for entry in ${KPROGS} cd ${.CURDIR}/../${entry}; \ - ${MAKE} ${MFLAGS} cleandir; \ - ${MAKE} ${MFLAGS} obj; \ - ${MAKE} ${MFLAGS} depend; \ - ${MAKE} ${MFLAGS} all; \ - ${MAKE} ${MFLAGS} install + ${MAKE} ${MFLAGS} -DNO_KERBEROS cleandir; \ + ${MAKE} ${MFLAGS} -DNO_KERBEROS obj; \ + ${MAKE} ${MFLAGS} -DNO_KERBEROS depend; \ + ${MAKE} ${MFLAGS} -DNO_KERBEROS all; \ + ${MAKE} ${MFLAGS} -DNO_KERBEROS install .endfor .include -- cgit v1.1