From 59aa0c93e1c4fce771f4c26fa6be979739cc8aa8 Mon Sep 17 00:00:00 2001 From: Jim Paris Date: Sat, 18 Sep 2010 16:06:11 -0400 Subject: [PATCH] Use "rm -f" in clean rules to ignore errors --- tools/ftditools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ftditools/Makefile b/tools/ftditools/Makefile index 951e0d0f6..20e8a64e7 100644 --- a/tools/ftditools/Makefile +++ b/tools/ftditools/Makefile @@ -11,7 +11,7 @@ CFLAGS = -Wall -Wextra #-Werror all: $(TARGETS) clean: - -rm $(TARGETS) + -rm -f $(TARGETS) install: all cp bbmc $(INSTALL) \ No newline at end of file