summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2010-02-17 11:02:54 +0000
committerNick Clifton <nickc@redhat.com>2010-02-17 11:02:54 +0000
commitfb5475e72c528855072c06b8dfea623133129703 (patch)
treef683a2f1e86e6f12c072d9ad4d26abae52961aed
parent87c6d0d3a3e5eb1a9fdbaf494760a94a79480998 (diff)
downloadbinutils-redhat-fb5475e72c528855072c06b8dfea623133129703.tar.gz
* Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
the config.cache files found by the find command.
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.tpl2
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d319b11676..eed51232a3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
* Makefile.tpl (local-distclean): Also remove config.cache files in
sub-directories as there may not be Makefiles present in the
sub-directories.
+ * Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
+ the config.cache files found by the find command.
+
* Makefile.in: Regenerate.
* configure.ac: Revert previous delta.
* configure: Regenerate.
diff --git a/Makefile.tpl b/Makefile.tpl
index 37317bcaf8..98b526c5a4 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;"