]> git.puffer.fish Git - mirror/frr.git/commit
autoconf: do not .gitignore m4/ax_lua.m4 10850/head
authorEugene Crosser <evgenii.cherkashin@ionos.com>
Wed, 23 Mar 2022 10:17:28 +0000 (11:17 +0100)
committerEugene Crosser <crosser@average.org>
Sat, 26 Mar 2022 14:05:54 +0000 (15:05 +0100)
commit8139cc3a6dfd6f5fd73aff58cfc9a52768679c2c
treebb754cdf73b082bc84685b825985a3c4be84275e
parent5bc17d7bd098fdde04f8ae2257d7f7ff974d84cd
autoconf: do not .gitignore m4/ax_lua.m4

The file m4/ax_lua.m4 needs to be a part of distribution, but it is not
inluded in the git repository by default becuase .gitignore file has a
wildcard for all *.m4 files, while individual files that must _not_ be
ignored are listed one by one as exceptions. ax_lua.m4 needs to be added
to this list of exceptions too.

One failure scenario is when you put a snapshot of the source tree in a
new git repository (e.g. the one used for a local CI/CD), this file is
not included in the repository, and subsequently build fails.

This commit adds the exception into m4/.gitignore file

Signed-off-by: Eugene Crosser <crosser@average.org>
m4/.gitignore