[llvm-commits] CVS: llvm-test/Makefile.programs
Chris Lattner
lattner at cs.uiuc.edu
Sat Oct 16 11:27:10 PDT 2004
Changes in directory llvm-test:
Makefile.programs updated: 1.138 -> 1.139
---
Log message:
Fix broken project support for TEST reports
---
Diffs of the changes: (+2 -2)
Index: llvm-test/Makefile.programs
diff -u llvm-test/Makefile.programs:1.138 llvm-test/Makefile.programs:1.139
--- llvm-test/Makefile.programs:1.138 Wed Oct 13 13:51:43 2004
+++ llvm-test/Makefile.programs Sat Oct 16 13:26:56 2004
@@ -529,9 +529,9 @@
TestMakefile := $(wildcard $(PROGDIR)/TEST.$(TEST).Makefile) \
$(wildcard $(LLVM_SRC_ROOT)/projects/*/test/TEST.$(TEST).Makefile)
TestReport := $(wildcard $(PROGDIR)/TEST.$(TEST).report) \
- $(wildcard $(BUILD_SRC_ROOT)/projects/*/test/TEST.$(TEST).report)
+ $(wildcard $(LLVM_SRC_ROOT)/projects/*/test/TEST.$(TEST).report)
TestGnuPlot := $(wildcard $(PROGDIR)/TEST.$(TEST).gnuplot) \
- $(wildcard $(BUILD_SRC_ROOT)/projects/*/test/TEST.$(TEST).gnuplot)
+ $(wildcard $(LLVM_SRC_ROOT)/projects/*/test/TEST.$(TEST).gnuplot)
ifneq ($(strip $(TestMakefile)),)
-include $(TestMakefile)
else
More information about the llvm-commits
mailing list