[llvm-commits] CVS: llvm-test/Makefile.programs
Reid Spencer
reid at x10sys.com
Tue Nov 21 09:58:52 PST 2006
Changes in directory llvm-test:
Makefile.programs updated: 1.241 -> 1.242
---
Log message:
Eliminate useless error messages from rm and make by using the -f option
---
Diffs of the changes: (+6 -6)
Makefile.programs | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
Index: llvm-test/Makefile.programs
diff -u llvm-test/Makefile.programs:1.241 llvm-test/Makefile.programs:1.242
--- llvm-test/Makefile.programs:1.241 Sat Nov 18 16:02:30 2006
+++ llvm-test/Makefile.programs Tue Nov 21 11:58:38 2006
@@ -491,32 +491,32 @@
ifndef DISABLE_DIFFS
$(PROGRAMS_TO_TEST:%=Output/%.exe-lli): \
Output/%.exe-lli: Output/%.diff-lli
- -rm $@
+ -rm -f $@
-cp $< $@
$(PROGRAMS_TO_TEST:%=Output/%.exe-jit): \
Output/%.exe-jit: Output/%.diff-jit
- -rm $@
+ -rm -f $@
-cp $< $@
$(PROGRAMS_TO_TEST:%=Output/%.exe-jit-beta): \
Output/%.exe-jit-beta: Output/%.diff-jit-beta
- -rm $@
+ -rm -f $@
-cp $< $@
$(PROGRAMS_TO_TEST:%=Output/%.exe-llc): \
Output/%.exe-llc: Output/%.diff-llc
- -rm $@
+ -rm -f $@
-cp $< $@
$(PROGRAMS_TO_TEST:%=Output/%.exe-llc-beta): \
Output/%.exe-llc-beta: Output/%.diff-llc-beta
- -rm $@
+ -rm -f $@
-cp $< $@
$(PROGRAMS_TO_TEST:%=Output/%.exe-cbe): \
Output/%.exe-cbe: Output/%.diff-cbe
- -rm $@
+ -rm -f $@
-cp $< $@
# Pseudo target to build just the bytecode file.
More information about the llvm-commits
mailing list