aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authornickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>2010-02-17 11:01:44 +0000
committernickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>2010-02-17 11:01:44 +0000
commit6881525617351e075ffcace209a25d2012488b0e (patch)
tree318181b79d2f739848d1563cd6de94fcca05c585 /Makefile.in
parent8072d92aaa7c9ccffc0e460e2e0fa79f505859d4 (diff)
* Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
the config.cache files found by the find command. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156828 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 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;"