[llvm-branch-commits] [llvm-branch] r99342 - /llvm/branches/Apple/Morbo/tools/Makefile

Bill Wendling isanbard at gmail.com
Tue Mar 23 16:08:46 PDT 2010


Author: void
Date: Tue Mar 23 18:08:46 2010
New Revision: 99342

URL: http://llvm.org/viewvc/llvm-project?rev=99342&view=rev
Log:
Remove if DISABLED not if not DISABLED...*sigh*

Modified:
    llvm/branches/Apple/Morbo/tools/Makefile

Modified: llvm/branches/Apple/Morbo/tools/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/Apple/Morbo/tools/Makefile?rev=99342&r1=99341&r2=99342&view=diff
==============================================================================
--- llvm/branches/Apple/Morbo/tools/Makefile (original)
+++ llvm/branches/Apple/Morbo/tools/Makefile Tue Mar 23 18:08:46 2010
@@ -54,7 +54,7 @@
 endif
 
 # Don't build edis if we explicitly disabled it.
-ifneq ($(DISABLE_EDIS),1)
+ifeq ($(DISABLE_EDIS),1)
   PARALLEL_DIRS := $(filter-out edis, $(PARALLEL_DIRS))
 endif
 





More information about the llvm-branch-commits mailing list