From 1cf91de5eac8d51e741edc945ba1ae661001b9a1 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Mon, 7 Aug 2017 00:30:32 -0400 Subject: [PATCH] Add the build and autom4te.cache directories to .gitignore Also skip them when building the source_tar_file. Signed-off-by: Theodore Ts'o --- .gitignore | 2 ++ Makefile.in | 1 + 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index d51e1fe..3c1d95a 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,6 @@ config.log config.status configure pwgen +build +autom4te.cache *.o diff --git a/Makefile.in b/Makefile.in index 4625ca1..7e4e6cd 100644 --- a/Makefile.in +++ b/Makefile.in @@ -76,6 +76,7 @@ $(srcdir)/.exclude-file: -o -name TAGS -o -name \*.old -o -name \*.gmo \ -o -name config.log -o -name config.cache \ -o -name config.status -o -name Makefile \ + -o -name build -o -name autom4te.cache \ -o -name changed-files -o -name .#\* \) \ -print) | sed -e "s/^./$$a/" > $(srcdir)/.exclude-file echo "$(SRCROOT)/.exclude-file" >> $(srcdir)/.exclude-file