From 85cb1ccbbaf4096f2f7d1cfc43d2568a11e53c85 Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Wed, 12 Nov 2008 04:43:55 +0000 Subject: [PATCH] Add the kerberos5 libs to the install32 target. (we've been building the all along, but never installing them) --- Makefile.inc1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile.inc1 b/Makefile.inc1 index df3d9d5bbe01..d247cb134b07 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -505,6 +505,9 @@ distribute32 install32: cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .if ${MK_CRYPT} != "no" cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} +.endif +.if ${MK_KERBEROS} != "no" + cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} .endif cd ${.CURDIR}/libexec/rtld-elf; \ PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//}