1From 90fb7bb85002cde39de3b3d2e2481933390832af Mon Sep 17 00:00:00 2001 2From: Ross Burton <ross.burton@arm.com> 3Date: Fri, 8 Dec 2023 22:35:45 +0000 4Subject: [PATCH] configure: set docdir in GTK_DOC_CHECK 5 6By passing --docdir in the GTK_DOC_CHECK arguments (to match 7autogen.sh) autoreconf will work out of the box. 8 9Without this autoreconf fails due to the documentation not being in 10./docs, the default location. 11 12Upstream-Status: Submitted [https://lore.kernel.org/linux-modules/20231208224511.1363066-1-ross.burton@arm.com/T/#u] 13Signed-off-by: Ross Burton <ross.burton@arm.com> 14--- 15 configure.ac | 2 +- 16 1 file changed, 1 insertion(+), 1 deletion(-) 17 18diff --git a/configure.ac b/configure.ac 19index 7056aae..d53a20c 100644 20--- a/configure.ac 21+++ b/configure.ac 22@@ -236,7 +236,7 @@ AS_IF([test "x$enable_coverage" = "xyes"], [ 23 AM_CONDITIONAL([ENABLE_COVERAGE], [test "x$enable_coverage" = "xyes"]) 24 25 m4_ifdef([GTK_DOC_CHECK], [ 26-GTK_DOC_CHECK([1.14],[--flavour no-tmpl-flat]) 27+GTK_DOC_CHECK([1.14],[--flavour no-tmpl-flat --docdir libkmod/docs]) 28 ], [ 29 AM_CONDITIONAL([ENABLE_GTK_DOC], false)]) 30 31