From eb089c1346114a747b0169fec693a49e3d8a48fd Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sun, 28 Nov 2021 19:17:23 +0100 Subject: [PATCH] autobuild: Fix autogen.sh (reduce build time) After running autogen.sh and configure, the following make had to run autoreconf because of dependencies which needed an update. This is fixed by running aclocal twice. Signed-off-by: Stefan Weil --- autogen.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autogen.sh b/autogen.sh index 8c1090d155..362bcc6f96 100755 --- a/autogen.sh +++ b/autogen.sh @@ -82,6 +82,10 @@ echo "Running $LIBTOOLIZE" $LIBTOOLIZE -f -c || bail_out $LIBTOOLIZE --automake || bail_out +# Run aclocal a 2nd time because glibtoolize created additional m4 files. +echo "Running aclocal" +aclocal -I config || bail_out + # --- Step 3: Generate configure and include/miaconfig.h from: # . configure.ac #