svn commit: r239767 - stable/9/usr.bin/clang

Dimitry Andric dim at FreeBSD.org
Tue Aug 28 06:49:33 UTC 2012


Author: dim
Date: Tue Aug 28 06:49:33 2012
New Revision: 239767
URL: http://svn.freebsd.org/changeset/base/239767

Log:
  MFC r239513:
  
  When WITH_CLANG_EXTRAS is enabled, avoid needlessly building the llvm
  and clang extras in the cross-tools stage.

Modified:
  stable/9/usr.bin/clang/Makefile
Directory Properties:
  stable/9/usr.bin/clang/   (props changed)

Modified: stable/9/usr.bin/clang/Makefile
==============================================================================
--- stable/9/usr.bin/clang/Makefile	Tue Aug 28 06:47:21 2012	(r239766)
+++ stable/9/usr.bin/clang/Makefile	Tue Aug 28 06:49:33 2012	(r239767)
@@ -4,7 +4,7 @@
 
 SUBDIR=	clang clang-tblgen tblgen
 
-.if ${MK_CLANG_EXTRAS} != "no"
+.if ${MK_CLANG_EXTRAS} != "no" && !defined(TOOLS_PREFIX)
 SUBDIR+=bugpoint \
 	llc \
 	lli \


More information about the svn-src-all mailing list