[llvm-commits] CVS: llvm-test/External/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Mon Oct 25 21:51:43 PDT 2004
Changes in directory llvm-test/External:
Makefile updated: 1.17 -> 1.18
---
Log message:
Really disable these directories
---
Diffs of the changes: (+3 -3)
Index: llvm-test/External/Makefile
diff -u llvm-test/External/Makefile:1.17 llvm-test/External/Makefile:1.18
--- llvm-test/External/Makefile:1.17 Sat Oct 23 18:44:43 2004
+++ llvm-test/External/Makefile Mon Oct 25 23:51:30 2004
@@ -11,16 +11,16 @@
PARALLEL_DIRS := SPEC Povray Namd
ifndef USE_POVRAY
-PARALLEL_DIRS := $(filter-out Povray/, $(PARALLEL_DIRS))
+PARALLEL_DIRS := $(filter-out Povray, $(PARALLEL_DIRS))
endif
ifndef USE_NAMD
-PARALLEL_DIRS := $(filter-out Namd/, $(PARALLEL_DIRS))
+PARALLEL_DIRS := $(filter-out Namd, $(PARALLEL_DIRS))
endif
# Sparc can't handle Namd: infinite loop, cause unknown
ifeq ($(ARCH),Sparc)
-PARALLEL_DIRS := $(filter-out Namd/, $(PARALLEL_DIRS))
+PARALLEL_DIRS := $(filter-out Namd, $(PARALLEL_DIRS))
endif
include Makefile.external
More information about the llvm-commits
mailing list