summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2020-06-04 22:30:19 +0200
committerFlorian Westphal <fw@strlen.de>2020-06-04 22:34:20 +0200
commit7c281b0d1d4df3a7c562697cf6fb853a3659cbaa (patch)
treea5441ea5f2731fa32db228d6474a541f353bedf4
parent55ce4086711bf95ef642f67c75dd5fa1c51fe437 (diff)
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 <fw@strlen.de>
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
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