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 27 28 29 30 31 32 33 34 35
|
From: Debian Games Team <pkg-games-devel@lists.alioth.debian.org>
Date: Sun, 21 Aug 2016 22:04:14 +0200
Subject: html-doc-paths
Set the correct input path for doxygen, relatively to the debian folder
Forwarded: no
---
doc/Doxyfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/doc/Doxyfile b/doc/Doxyfile
index ef96c00..c154e27 100644
--- a/doc/Doxyfile
+++ b/doc/Doxyfile
@@ -138,7 +138,7 @@ FULL_PATH_NAMES = YES
# If left blank the directory from which doxygen is run is used as the
# path to strip.
-STRIP_FROM_PATH = ../claw/
+STRIP_FROM_PATH = ../../claw/
# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of
# the path mentioned in the documentation of a class, which tells
@@ -665,8 +665,8 @@ WARN_LOGFILE =
# directories like "/usr/src/myproject". Separate the files or directories
# with spaces.
-INPUT = ../claw \
- ./doc-src
+INPUT = ../../claw \
+ ../doc/doc-src
# 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
|