summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2020-12-02 23:46:40 +0100
committerLudovic Rousseau <ludovic.rousseau@free.fr>2020-12-03 18:51:45 +0100
commit442305ec3d525bc9745cd1d7b7e89fd413595444 (patch)
treec9ecc4e32d26c1c83f15ae97fcddb0266bb03d71 /doc
parentcd431859fad160b29a43192fb1e2894cb6517f10 (diff)
downloadlibusb-442305ec3d525bc9745cd1d7b7e89fd413595444.tar.gz
autotools: fix out-of-tree building of documentation
When building libusb out-of-tree, ie when running configure from another directory, building the documentation fails with: $ make -C doc make: Entering directory '/tmp/build/doc' make: *** No rule to make target 'libusb.png', needed by 'api-1.0'. Stop. make: Leaving directory '/tmp/build/doc' This has likely been broken by commit 4a5540a925e4 ("autotools: Fix a number of issues"). This patch fixes that by prefixing libusb.png with @top_srcdir@/doc. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.in2
-rw-r--r--doc/doxygen.cfg.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/Makefile.in b/doc/Makefile.in
index 26400b5..45c3209 100644
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -5,7 +5,7 @@ LIBUSB_DOC_SRC = $(filter-out $(addprefix $(LIBUSB_SRC_DIR)/,$(EXCLUDED_FILES)),
docs: @DOXYGEN_HTMLDIR@
-@DOXYGEN_HTMLDIR@: doxygen.cfg libusb.png $(LIBUSB_DOC_SRC)
+@DOXYGEN_HTMLDIR@: doxygen.cfg @top_srcdir@/doc/libusb.png $(LIBUSB_DOC_SRC)
doxygen $<
sfurl = web.sourceforge.net:/home/project-web/libusb/htdocs
diff --git a/doc/doxygen.cfg.in b/doc/doxygen.cfg.in
index f4ccf1e..569e465 100644
--- a/doc/doxygen.cfg.in
+++ b/doc/doxygen.cfg.in
@@ -51,7 +51,7 @@ PROJECT_BRIEF = "A cross-platform user library to access USB devices"
# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
# the logo to the output directory.
-PROJECT_LOGO = libusb.png
+PROJECT_LOGO = @top_srcdir@/doc/libusb.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