From 6dfcede81a816bd7ec951da4c6278baafe0ed6be Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Thu, 19 Dec 2024 04:47:54 -0500 Subject: [PATCH] Ignore `build-aux/config.guess`, `build-aux/config.sub` These currently aren't installed by `autoreconf --install`, but ignore them anyway as a defensive measure. --- .gitignore | 2 ++ autogen | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 6e98286..ddcf4db 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,8 @@ release /Makefile.in /aclocal.m4 /autom4te.cache/ +/build-aux/config.guess +/build-aux/config.sub /build-aux/install-sh /build-aux/missing /build-aux/tap-driver.sh diff --git a/autogen b/autogen index 7701af6..a03c6fd 100755 --- a/autogen +++ b/autogen @@ -13,6 +13,8 @@ try mkdir -p build-aux/m4 # Remove the files to truly force them to be updated. try rm -f \ aclocal.m4 \ + build-aux/config.guess \ + build-aux/config.sub \ build-aux/install-sh \ build-aux/missing \ build-aux/tap-driver.sh \