1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00

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

correctly omit them for non-Unix operating systems.

llvm-svn: 19206
This commit is contained in:
Reid Spencer 2004-12-31 22:56:14 +00:00
parent 734b581c5b
commit 41ac6a5ebb

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