From 82792d7af93c213d7e91b42d6c5212575bf81957 Mon Sep 17 00:00:00 2001 From: Andrea Mazzoleni Date: Sat, 9 Mar 2024 17:47:13 +0100 Subject: [PATCH] Use the modern autoreconf in autogen.sh --- autogen.sh | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/autogen.sh b/autogen.sh index d95d09f..8152272 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,16 +1,10 @@ #!/bin/sh # -echo "Generating build information using aclocal, automake and autoconf" -echo "This may take a while ..." +echo "Generating build information using autoreconf" -# Touch the timestamps on all the files since CVS messes them up -touch configure.ac - -# Regenerate configuration files -aclocal -automake --add-missing --force-missing -autoconf -autoheader && touch config.h.in +# All is done by autoreconf +autoreconf -f -i # Run configure for this platform echo "Now you are ready to run ./configure" +