1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: HÃ¥vard F. Aasen <havard.f.aasen@pfft.no>
Date: Thu, 21 Jul 2022 18:36:44 +0200
Subject: Don't build documentation with full path
When building documentation, set FULL_PATH_NAMES = NO. Having this
enabled makes the build unreproducible. Lintian warns with
[file-references-package-build-path].
Forwarded: not-needed
---
doxydoc/doxygen.conf.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doxydoc/doxygen.conf.in b/doxydoc/doxygen.conf.in
index 6299d05..8f025f1 100644
--- a/doxydoc/doxygen.conf.in
+++ b/doxydoc/doxygen.conf.in
@@ -105,7 +105,7 @@ INLINE_INHERITED_MEMB = NO
# path before files name in the file list and in the header files. If set
# to NO the shortest path that makes the file name unique will be used.
-FULL_PATH_NAMES = YES
+FULL_PATH_NAMES = NO
# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag
# can be used to strip a user-defined part of the path. Stripping is
|