Reverse the logic for Win32 to ensure that bugpoint and llvm-db are NOT

built on this platform.

llvm-svn: 19015
This commit is contained in:
Reid Spencer 2004-12-17 08:00:40 +00:00
parent 120aa08e1c
commit 1abfe0d655
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ include $(LEVEL)/Makefile.config
# rewritten to not depend on fork at which time they should be added back to
# the list above.
ifneq ($(OS),Win32)
ifeq ($(OS),Win32)
PARALLEL_DIRS := $(filter-out bugpoint llvm-db,$(PARALLEL_DIRS))
endif