summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-31 22:56:14 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-31 22:56:14 +0000
commitbb4fe3d67776119045f53943b07e6250c81c2197 (patch)
tree863f31cfc8f655feda8bc598912bab9f8ac5e8fb /tools
parentbbf7a8af5a7781cf0f721770ab81333f22c0f464 (diff)
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
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile
index b2b47504dbc..a2c205998b4 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -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