From 8fbf9ed4c8289a8a692307306124a5b5a60b6ec9 Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Thu, 19 Dec 2024 04:42:22 -0500 Subject: [PATCH] autogen: Force regeneration of `--install` files --- autogen | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/autogen b/autogen index 783c29a..30e412d 100755 --- a/autogen +++ b/autogen @@ -9,6 +9,13 @@ try() { "$@" || fatal "'$@' failed"; } try cd "${0%/*}" # aclocal complains if a directory passed to AC_CONFIG_MACRO_DIR doesn't exist. try mkdir -p build-aux/m4 +# autoreconf's '--force' option doesn't affect any of the files installed by the '--install' option. +# Remove the files to truly force them to be updated. +try rm -f \ + aclocal.m4 \ + build-aux/install-sh \ + build-aux/missing \ + ; try autoreconf -fviW all # Ignore changes to build-aux/tap-driver, but only if we're in a clone