From: Bill Wendling Date: Tue, 23 Mar 2010 23:09:03 +0000 (+0000) Subject: Remove if DISABLED not if not DISABLED... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fa256c6eee69f3a5c86baf0a15c920dee952971f;p=oota-llvm.git Remove if DISABLED not if not DISABLED... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99343 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/Makefile b/tools/Makefile index 0c9a9644a5b..e124422cd6d 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -54,7 +54,7 @@ ifeq ($(filter $(TARGETS_TO_BUILD), X86),) 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