[llvm-commits] CVS: llvm/tools/Makefile
Reid Spencer
reid at x10sys.com
Fri Dec 17 00:00:51 PST 2004
Changes in directory llvm/tools:
Makefile updated: 1.39 -> 1.40
---
Log message:
Reverse the logic for Win32 to ensure that bugpoint and llvm-db are NOT
built on this platform.
---
Diffs of the changes: (+1 -1)
Index: llvm/tools/Makefile
diff -u llvm/tools/Makefile:1.39 llvm/tools/Makefile:1.40
--- llvm/tools/Makefile:1.39 Fri Dec 17 01:59:53 2004
+++ llvm/tools/Makefile Fri Dec 17 02:00:40 2004
@@ -19,7 +19,7 @@
# rewritten to not depend on fork at which time they should be added back to
# the list above.
-ifneq ($(OS),Win32)
+ifeq ($(OS),Win32)
PARALLEL_DIRS := $(filter-out bugpoint llvm-db,$(PARALLEL_DIRS))
endif
More information about the llvm-commits
mailing list