From e50390fc024ab252284c4199227d64bde7a821f9 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Wed, 17 Feb 2010 11:01:44 +0000 Subject: [PATCH] Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete the config.cache files found... * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete the config.cache files found by the find command. From-SVN: r156828 --- Makefile.in | 2 +- Makefile.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 2f96521a541..93f66b6fd7c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -2658,7 +2658,7 @@ local-distclean: -rmdir texinfo/doc texinfo/info texinfo/intl texinfo/lib 2>/dev/null -rmdir texinfo/makeinfo texinfo/po texinfo/util 2>/dev/null -rmdir fastjar gcc libiberty texinfo zlib 2>/dev/null - -find . -name config.cache -delete \; 2>/dev/null + -find . -name config.cache -exec rm -f {} \; \; 2>/dev/null local-maintainer-clean: @echo "This command is intended for maintainers to use;" diff --git a/Makefile.tpl b/Makefile.tpl index 37317bcaf88..98b526c5a48 100644 --- a/Makefile.tpl +++ b/Makefile.tpl @@ -771,7 +771,7 @@ local-distclean: -rmdir texinfo/doc texinfo/info texinfo/intl texinfo/lib 2>/dev/null -rmdir texinfo/makeinfo texinfo/po texinfo/util 2>/dev/null -rmdir fastjar gcc libiberty texinfo zlib 2>/dev/null - -find . -name config.cache -delete \; 2>/dev/null + -find . -name config.cache -exec rm -f {} \; \; 2>/dev/null local-maintainer-clean: @echo "This command is intended for maintainers to use;"