svn commit: r209400 - head/lib

Ed Schouten ed at FreeBSD.org
Mon Jun 21 19:44:29 UTC 2010


Author: ed
Date: Mon Jun 21 19:44:29 2010
New Revision: 209400
URL: http://svn.freebsd.org/changeset/base/209400

Log:
  Don't build Clang libs during lib32 build.
  
  This should massively reduce the buildworld time on amd64.
  
  Pointy hat to:	me

Modified:
  head/lib/Makefile

Modified: head/lib/Makefile
==============================================================================
--- head/lib/Makefile	Mon Jun 21 18:01:57 2010	(r209399)
+++ head/lib/Makefile	Mon Jun 21 19:44:29 2010	(r209400)
@@ -138,7 +138,7 @@ _libsdp=	libsdp
 _libbsnmp=	libbsnmp
 .endif
 
-.if ${MK_CLANG} != "no"
+.if ${MK_CLANG} != "no" && !defined(COMPAT_32BIT)
 _clang=		clang
 .endif
 


More information about the svn-src-head mailing list