From c01f624f4a55dbf97cc39e70700143551d4f571c Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Tue, 5 Nov 2019 08:57:39 -0500 Subject: Another attempt to fix Doxygen references in out-of-tree builds This time, we're using cd to run doxygen from inside the source directory, not the build directory at all. This lets us call the source directory ".", which (I hope) both Doxygen 1.8.13 and 1.8.15 will understand. Naturally, this requires a corresponding change in the doxygen configuration so that we are directing the output to the correct place. Fix for 32378. --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 8b2772577f..1234b6d22f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -244,7 +244,8 @@ dist-rpm: dist-gzip .PHONY: doxygen doxygen: Doxyfile - mkdir -p doc/doxygen && doxygen + mkdir -p doc/doxygen + (cd "$(top_srcdir)" && doxygen "$(abs_top_builddir)/Doxyfile") test: all $(top_builddir)/src/test/test -- cgit v1.2.3-54-g00ecf