shithub: libopusenc

Download patch

ref: 9cb17c68d20195852c5da17d010d512f2a225e52
parent: 631c0428c154a8991794c928bd272ffaa81282e6
author: Ron <ron@debian.org>
date: Tue Feb 12 09:01:51 EST 2019

Don't install doxygen md5 files

These are only used by doxygen to speed up regeneration of existing
output after source changes, which isn't something that's going to
happen on a snapshot of installed documentation.

--- a/Makefile.am
+++ b/Makefile.am
@@ -69,7 +69,7 @@
 	  ( cd doc && \
 	    echo "Installing documentation in $(DESTDIR)$(docdir)"; \
 	    $(INSTALL) -d $(DESTDIR)$(docdir)/html/search; \
-	    for f in `find html -type f \! -name "installdox"` ; do \
+	    for f in `find html -type f \! -name "installdox" -a \! -name '*.md5'` ; do \
 	      $(INSTALL_DATA) $$f $(DESTDIR)$(docdir)/$$f;     \
 	    done ) \
 	fi