diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-31 22:56:14 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-31 22:56:14 +0000 |
commit | bb4fe3d67776119045f53943b07e6250c81c2197 (patch) | |
tree | 863f31cfc8f655feda8bc598912bab9f8ac5e8fb /tools/Makefile | |
parent | bbf7a8af5a7781cf0f721770ab81333f22c0f464 (diff) | |
download | external_llvm-bb4fe3d67776119045f53943b07e6250c81c2197.zip external_llvm-bb4fe3d67776119045f53943b07e6250c81c2197.tar.gz external_llvm-bb4fe3d67776119045f53943b07e6250c81c2197.tar.bz2 |
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/Makefile')
-rw-r--r-- | tools/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/Makefile b/tools/Makefile index b2b4750..a2c2059 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 |