Correct the conditional test for non-portable tools so that it will

correctly omit them for non-Unix operating systems.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19206 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-12-31 22:56:14 +00:00
parent bbf7a8af5a
commit bb4fe3d677

View File

@ -18,8 +18,7 @@ include $(LEVEL)/Makefile.config
# on fork(2) behavior that Win32 doesn't have. At some point they'll be
# rewritten to not depend on fork at which time they should be added back to
# the list above.
ifeq ($(OS),Win32)
ifneq ($(LLVM_ON_UNIX),1)
PARALLEL_DIRS := $(filter-out bugpoint llvm-db,$(PARALLEL_DIRS))
endif