Remove if DISABLED not if not DISABLED...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99343 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2010-03-23 23:09:03 +00:00
parent a54934ae9d
commit fa256c6eee

View File

@ -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