[cfe-commits] r164992 - /cfe/trunk/Makefile

Bill Wendling isanbard at gmail.com
Mon Oct 1 23:19:15 PDT 2012


Author: void
Date: Tue Oct  2 01:19:15 2012
New Revision: 164992

URL: http://llvm.org/viewvc/llvm-project?rev=164992&view=rev
Log:
Use an environment variable instead of what's in the make cmd goals.

Modified:
    cfe/trunk/Makefile

Modified: cfe/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/Makefile?rev=164992&r1=164991&r2=164992&view=diff
==============================================================================
--- cfe/trunk/Makefile (original)
+++ cfe/trunk/Makefile Tue Oct  2 01:19:15 2012
@@ -27,7 +27,7 @@
   DIRS := $(filter-out tools docs, $(DIRS))
   OPTIONAL_DIRS :=
 endif
-ifeq ($(MAKECMDGOALS),clang-only)
+ifeq ($(BUILD_CLANG_ONLY),YES)
   DIRS := $(filter-out tools docs unittests, $(DIRS))
 	tools/driver tools/libclang
   OPTIONAL_DIRS :=





More information about the cfe-commits mailing list