From b6a0138f97b07a0589706f1d5c7f173147917de6 Mon Sep 17 00:00:00 2001 From: "Felix S. Klock II" Date: Thu, 18 Jul 2013 09:43:19 +0200 Subject: [PATCH] PR #7637 followup: no need to print the set of removed files twice. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index fb36b4e1ac6..d78176e5699 100644 --- a/Makefile.in +++ b/Makefile.in @@ -249,7 +249,7 @@ endef # Same interface as above, but deletes rather than just listing the files. define REMOVE_ALL_OLD_GLOB_MATCHES_EXCEPT - $(Q)MATCHES="$(filter-out %$(3),$(wildcard $(1)/$(2)))"; if [ -n "$$MATCHES" ] ; then echo "Warning: removing previous" \'$(2)\' "libraries:" $$MATCHES; rm -v $$MATCHES ; fi + $(Q)MATCHES="$(filter-out %$(3),$(wildcard $(1)/$(2)))"; if [ -n "$$MATCHES" ] ; then echo "Warning: removing previous" \'$(2)\' "libraries:" $$MATCHES; rm $$MATCHES ; fi endef # We use a different strategy for LIST_ALL_OLD_GLOB_MATCHES_EXCEPT