From 8bc3652fe2db6a78ba68f1634cfcd763a4f201d2 Mon Sep 17 00:00:00 2001 From: Daniel Aarno Date: Tue, 26 Dec 2017 15:11:09 +0100 Subject: [PATCH] Fix make distcheck issue with stale files in build dir. --- docs/Makefile.am | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/Makefile.am b/docs/Makefile.am index 8315b36..6cb7c3a 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -19,7 +19,7 @@ install-data-local : cp -R $(abs_srcdir)/html $(DESTDIR)$(docdir) uninstall-local : - chmod -R +w $(DESTDIR)$(docdir) + chmod -R o+w $(DESTDIR)$(docdir) rm -rf $(DESTDIR)$(docdir) dist-hook : @@ -27,5 +27,6 @@ dist-hook : cp -R $(abs_srcdir)/html $(distdir) clean-local: - $(RM) -rf $(abs_srcdir)/html/* + $(RM) -rf $(abs_builddir)/html/* + $(RM) -rf $(abs_builddir)/doxygen_sqlite3.db