diff options
author | Nick Clifton <nickc@redhat.com> | 2010-02-17 11:02:54 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2010-02-17 11:02:54 +0000 |
commit | 792cdb506501cd5bba84e66b29ccfa5b2ff34a2c (patch) | |
tree | cb17245c4478f3e86a35e0998fbfba08d9d0dbee /Makefile.tpl | |
parent | 243e2c5d0a828e6e461f8ee23cb613c1dff55a35 (diff) | |
download | gdb-792cdb506501cd5bba84e66b29ccfa5b2ff34a2c.zip gdb-792cdb506501cd5bba84e66b29ccfa5b2ff34a2c.tar.gz gdb-792cdb506501cd5bba84e66b29ccfa5b2ff34a2c.tar.bz2 |
* 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.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.tpl b/Makefile.tpl index 37317bc..98b526c 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;" |