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.
This commit is contained in:
Richard Hansen 2024-12-19 04:47:54 -05:00
parent ceced7e094
commit 6dfcede81a
2 changed files with 4 additions and 0 deletions

2
.gitignore vendored
View file

@ -7,6 +7,8 @@ release
/Makefile.in /Makefile.in
/aclocal.m4 /aclocal.m4
/autom4te.cache/ /autom4te.cache/
/build-aux/config.guess
/build-aux/config.sub
/build-aux/install-sh /build-aux/install-sh
/build-aux/missing /build-aux/missing
/build-aux/tap-driver.sh /build-aux/tap-driver.sh

View file

@ -13,6 +13,8 @@ try mkdir -p build-aux/m4
# Remove the files to truly force them to be updated. # Remove the files to truly force them to be updated.
try rm -f \ try rm -f \
aclocal.m4 \ aclocal.m4 \
build-aux/config.guess \
build-aux/config.sub \
build-aux/install-sh \ build-aux/install-sh \
build-aux/missing \ build-aux/missing \
build-aux/tap-driver.sh \ build-aux/tap-driver.sh \