From be657471e761462d91c62e8cd00519e5dbda82a0 Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Tue, 29 Aug 2023 17:25:10 +0200 Subject: 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. --- documentation/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'documentation/Makefile') 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 $@ ..." -- cgit v1.2.3