diff options
author | Bill Wendling <isanbard@gmail.com> | 2010-03-23 23:09:03 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2010-03-23 23:09:03 +0000 |
commit | fa256c6eee69f3a5c86baf0a15c920dee952971f (patch) | |
tree | 2efbfe9f9b629abb6bbc490c2f45e27d7a45564d /tools | |
parent | a54934ae9d278448fb557366eb4a79a8cb3fc606 (diff) | |
download | external_llvm-fa256c6eee69f3a5c86baf0a15c920dee952971f.zip external_llvm-fa256c6eee69f3a5c86baf0a15c920dee952971f.tar.gz external_llvm-fa256c6eee69f3a5c86baf0a15c920dee952971f.tar.bz2 |
Remove if DISABLED not if not DISABLED...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99343 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 0c9a964..e124422 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 |