[llvm-commits] CVS: llvm/tools/Makefile

Reid Spencer reid at x10sys.com
Fri Dec 31 14:56:24 PST 2004



Changes in directory llvm/tools:

Makefile updated: 1.40 -> 1.41
---
Log message:

Correct the conditional test for non-portable tools so that it will
correctly omit them for non-Unix operating systems.


---
Diffs of the changes:  (+1 -2)

Index: llvm/tools/Makefile
diff -u llvm/tools/Makefile:1.40 llvm/tools/Makefile:1.41
--- llvm/tools/Makefile:1.40	Fri Dec 17 02:00:40 2004
+++ llvm/tools/Makefile	Fri Dec 31 16:56:14 2004
@@ -18,8 +18,7 @@
 # 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
 






More information about the llvm-commits mailing list