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 36
|
Description: use relative paths in Doxyfile
Author: IOhannes m zmölnig
Origin: Debian
Bug: https://github.com/rbdannenberg/o2/pull/16
Applied-Upstream: ced1e904fe6c1a49ed8d39583b3d07dbbb0a69f9
Last-Update: 2018-12-04
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- o2.orig/doc/Doxyfile
+++ o2/doc/Doxyfile
@@ -51,14 +51,14 @@
# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
# the logo to the output directory.
-PROJECT_LOGO = /Users/rbd/o2/doc/logo-small.png
+PROJECT_LOGO = doc/logo-small.png
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
# into which the generated documentation will be written. If a relative path is
# entered, it will be relative to the location where doxygen was started. If
# left blank the current directory will be used.
-OUTPUT_DIRECTORY = /Users/rbd/o2/doc/doxygen
+OUTPUT_DIRECTORY = doc/doxygen
# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
# directories (in 2 levels) under the output directory of each output format and
@@ -781,7 +781,7 @@
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
# Note: If this tag is empty the current directory is searched.
-INPUT = /Users/rbd/o2/src/o2.h
+INPUT = src/o2.h
# This tag can be used to specify the character encoding of the source files
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
|