diff options
author | Tomi Ollila <tomi.ollila@iki.fi> | 2014-09-01 21:44:59 +0300 |
---|---|---|
committer | David Bremner <david@tethera.net> | 2014-09-02 08:43:20 -0700 |
commit | ef5e66ae8e84fce75154417dd51be72f78ec1f45 (patch) | |
tree | d6e71799f8e2c28ace68d4494fc616191efa842d | |
parent | cca05ac10e908c2a8d7fdb3beac59bc085de9702 (diff) |
doc: 'rm -f' potential doxygen temporary output file
Some (older) Doxygen versions do not create such a temporary file.
-rw-r--r-- | doc/Makefile.local | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile.local b/doc/Makefile.local index 08874139..e7d0bac8 100644 --- a/doc/Makefile.local +++ b/doc/Makefile.local @@ -70,7 +70,7 @@ install-apidocs: apidocs $(APIMAN): $(dir)/config.dox $(srcdir)/$(dir)/doxygen.cfg $(srcdir)/lib/notmuch.h mkdir -p $(DOCBUILDDIR)/man/man3 doxygen $(DOXYFILE) - rm $(DOCBUILDDIR)/man/man3/_*.3 + rm -f $(DOCBUILDDIR)/man/man3/_*.3 perl -pi -e 's/^[.]RI "\\fI/.RI "\\fP/' $(APIMAN) else apidocs: |