Correct the conditional test for non-portable tools so that it will
authorReid Spencer <rspencer@reidspencer.com>
Fri, 31 Dec 2004 22:56:14 +0000 (22:56 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 31 Dec 2004 22:56:14 +0000 (22:56 +0000)
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

tools/Makefile

index b2b47504dbcf48d4f2cbd856939405211552da6d..a2c205998b402574fcfe30e9ed5a1bd64cc3a6a8 100644 (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