From d9f8c2a2baaa2706acaf88d3d0a54598d9c349b9 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Wed, 1 Jul 2026 11:27:44 +0200 Subject: fixed `make devdoc` (Doxygen code documentation) The Doxyfile.in referenced @top_srcdir@ which resolves to `..` even though doxygen is invoked from the root directory. This is fixed now by using absolute paths. --- doc/Doxyfile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Doxyfile.in b/doc/Doxyfile.in index f4c186d..e40ebf1 100644 --- a/doc/Doxyfile.in +++ b/doc/Doxyfile.in @@ -574,7 +574,7 @@ WARN_LOGFILE = # directories like "/usr/src/myproject". Separate the files or directories # with spaces. -INPUT = "@top_srcdir@" +INPUT = "@abs_top_srcdir@" # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is -- cgit v1.2.3