From bb4fe3d67776119045f53943b07e6250c81c2197 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 31 Dec 2004 22:56:14 +0000 Subject: 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 --- tools/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tools/Makefile') diff --git a/tools/Makefile b/tools/Makefile index b2b47504db..a2c205998b 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 -- cgit v1.2.3