summaryrefslogtreecommitdiff
path: root/documentation/Makefile
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2023-08-29 17:25:10 +0200
committerAlbrecht Schlosser <albrechts.fltk@online.de>2023-08-29 17:25:10 +0200
commitbe657471e761462d91c62e8cd00519e5dbda82a0 (patch)
tree2ce1193abce1c753aa3d452f3e41b86c53f592f5 /documentation/Makefile
parentad5e49464b4ba5972d2dbce762b02009755338d6 (diff)
Documentation/PDF: always use the configured doxygen executable
... to create the LaTeX header file used by doxygen. This fix applies to both configure/make and CMake. The existing version used `doxygen` which erroneously ran the doxygen version from the current 'PATH' which might issue doxygen warnings and potentially create a wrong LaTeX header file if the configured doxygen program was not the one in the user's path.
Diffstat (limited to 'documentation/Makefile')
-rw-r--r--documentation/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/Makefile b/documentation/Makefile
index ac0ad93f4..349c7a209 100644
--- a/documentation/Makefile
+++ b/documentation/Makefile
@@ -196,7 +196,7 @@ src/fltk-title.tex: src/fltk-title.tex.in
src/fltk-book.tex.in: src/fltk-title.tex
echo "Generating $@ ..."
- ./make_header $< $@
+ ./make_header $(DOXYDOC) $< $@
src/fltk-book.tex: src/fltk-book.tex.in
echo "Generating $@ ..."