From 7c281b0d1d4df3a7c562697cf6fb853a3659cbaa Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Thu, 4 Jun 2020 22:30:19 +0200 Subject: configure: fix doxygen check AC_OUTPUT must be done after HAVE_DOXYGEN variable has been set, else the varable substitution in doxygen/Makefile.in doesn't work and the Makefile always contains the supposedly conditional section. Signed-off-by: Florian Westphal --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index e99b07a..2686fe9 100644 --- a/configure.ac +++ b/configure.ac @@ -35,7 +35,6 @@ AC_CONFIG_FILES([Makefile src/Makefile utils/Makefile examples/Makefile include/Makefile include/libnetfilter_queue/Makefile doxygen/Makefile include/linux/Makefile include/linux/netfilter/Makefile]) -AC_OUTPUT dnl Only run doxygen Makefile if doxygen installed @@ -44,4 +43,5 @@ if test -z "$DOXYGEN"; then AC_MSG_WARN([Doxygen not found - continuing without Doxygen support]) fi - AM_CONDITIONAL([HAVE_DOXYGEN], [test -n "$DOXYGEN"]) +AM_CONDITIONAL([HAVE_DOXYGEN], [test -n "$DOXYGEN"]) +AC_OUTPUT -- cgit v1.2.3