From 9013917d5884da0c5cf218effd552520e306ffba Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Thu, 23 Oct 2014 10:01:08 +0200 Subject: [PATCH 1/2] gitignore: use absolute path The current content of `.gitignore` is using relative paths. For example, `test/config.log` would be ignored while it doesn't seem to be the intent. Use absolute paths. They are still relative to the root of the repository. --- .gitignore | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.gitignore b/.gitignore index dabbf24..45819de 100644 --- a/.gitignore +++ b/.gitignore @@ -1,21 +1,21 @@ *.o -Makefile -Makefile.in -aclocal.m4 -autom4te.cache/ -config.guess -config.log -config.status -config.sub -configure -depcomp -doc/Makefile -doc/Makefile.in -install-sh -missing -src/.deps/ -src/Makefile -src/Makefile.in -src/s3fs -test/Makefile -test/Makefile.in +/Makefile +/Makefile.in +/aclocal.m4 +/autom4te.cache/ +/config.guess +/config.log +/config.status +/config.sub +/configure +/depcomp +/doc/Makefile +/doc/Makefile.in +/install-sh +/missing +/src/.deps/ +/src/Makefile +/src/Makefile.in +/src/s3fs +/test/Makefile +/test/Makefile.in From 8bcab645e13c13aa6b64811a130105666084e350 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Thu, 23 Oct 2014 10:02:59 +0200 Subject: [PATCH 2/2] gitignore: add `test-driver` and `compile` Those are generated by latest versions of autotools. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 45819de..62e355e 100644 --- a/.gitignore +++ b/.gitignore @@ -9,6 +9,8 @@ /config.sub /configure /depcomp +/test-driver +/compile /doc/Makefile /doc/Makefile.in /install-sh