shithub: opusfile

Download patch

ref: 64e75acfa39f613a403034e532c409dbc0f58fd7
parent: 6134a84644a71ba6ad60c35b16c86693a20862bd
author: Ralph Giles <giles@thaumas.net>
date: Fri May 1 18:47:17 EDT 2020

Fix documentation Makefile.

We ship a default Makefile which can be used to invoke doxygen
to format the API documentation outside of the autotools build,
which requires implementing subsitition of the appropriate
variables in Doxyfile.in.

This commit adds a missing substitution, telling doxygen to
expect `dot` from the graphviz package to be available.

--- a/doc/Makefile
+++ b/doc/Makefile
@@ -30,5 +30,6 @@
 Doxyfile: Doxyfile.in Makefile ../package_version
 	sed -e 's/@PACKAGE_NAME@/opusfile/' \
 	    -e 's/@PACKAGE_VERSION@/$(PACKAGE_VERSION)/' \
+	    -e 's/@HAVE_DOT@/yes/' \
 	    -e 's/@top_srcdir@/../' \
 	  < $< > $@