From 41ac6a5ebbe23487220577abce89d097950bacdc Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 31 Dec 2004 22:56:14 +0000 Subject: [PATCH] Correct the conditional test for non-portable tools so that it will correctly omit them for non-Unix operating systems. llvm-svn: 19206 --- tools/Makefile | 3 +-- 1 file changed, 1 insertion(+), 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