diff options
author | Ben Gamari <ben@smart-cactus.org> | 2022-07-17 10:16:45 -0400 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2022-07-18 16:39:20 -0400 |
commit | aa75bbde5603aa3e91f08a02977e8dd459109a62 (patch) | |
tree | 6c6ffc4bfec38057f1f2f7dc9262390711d085ff | |
parent | 6d8a715e20cf3583f99248383c1b2932d152bf52 (diff) | |
download | haskell-aa75bbde5603aa3e91f08a02977e8dd459109a62.tar.gz |
gitignore: don't ignore all aclocal.m4 files
While GHC's own aclocal.m4 is generated by the aclocal tool, other
packages' aclocal.m4 are committed in the repository. Previously
`.gitignore` included an entry which covered *any* file named
`aclocal.m4`, which lead to quite some confusion (e.g. see #21740).
Fix this by modifying GHC's `.gitignore` to only cover GHC's own
`aclocal.m4`.
-rw-r--r-- | .gitignore | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 0df2f84ab1..4b48294870 100644 --- a/.gitignore +++ b/.gitignore @@ -39,10 +39,11 @@ tags TAGS autom4te.cache -aclocal.m4 config.log config.status configure +# GHC's own aclocal.m4 is generated by aclocal +/aclocal.m4 # Temporarily generated configure files confdefs.h |