summaryrefslogtreecommitdiff
path: root/Makefile.tpl
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
commit70f7b24844aa36c3609628187e4cf8b961ad0637 (patch)
tree18426916f8b8b091a64c61b662ef7c0c1bbdc038 /Makefile.tpl
parent9bda7986b31bcba4943fb262abbe5e4e86a64af8 (diff)
downloadgdb-70f7b24844aa36c3609628187e4cf8b961ad0637.tar.gz
* Makefile.tpl: Use "-exec rm {}" rather than "-delete" to delete
the config.cache files found by the find command.
Diffstat (limited to 'Makefile.tpl')
-rw-r--r--Makefile.tpl2
1 files changed, 1 insertions, 1 deletions
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;"