svn commit: r184860 - head

David E. O'Brien obrien at FreeBSD.org
Tue Nov 11 20:43:55 PST 2008


Author: obrien
Date: Wed Nov 12 04:43:55 2008
New Revision: 184860
URL: http://svn.freebsd.org/changeset/base/184860

Log:
  Add the kerberos5 libs to the install32 target.
  (we've been building the all along, but never installing them)

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Wed Nov 12 01:22:25 2008	(r184859)
+++ head/Makefile.inc1	Wed Nov 12 04:43:55 2008	(r184860)
@@ -506,6 +506,9 @@ distribute32 install32:
 .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$//}
 	cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} ${.TARGET:S/32$//}


More information about the svn-src-all mailing list