diff options
author | Eugene Crosser <evgenii.cherkashin@ionos.com> | 2022-03-23 11:17:28 +0100 |
---|---|---|
committer | Eugene Crosser <crosser@average.org> | 2022-03-26 15:05:54 +0100 |
commit | 8139cc3a6dfd6f5fd73aff58cfc9a52768679c2c (patch) | |
tree | bb754cdf73b082bc84685b825985a3c4be84275e /m4 | |
parent | Merge pull request #10677 from mobash-rasool/pimv6-receive-pkt (diff) | |
download | frr-8139cc3a6dfd6f5fd73aff58cfc9a52768679c2c.tar.xz frr-8139cc3a6dfd6f5fd73aff58cfc9a52768679c2c.zip |
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>
Diffstat (limited to 'm4')
-rw-r--r-- | m4/.gitignore | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/m4/.gitignore b/m4/.gitignore index 01a2a593d..63f9fa78e 100644 --- a/m4/.gitignore +++ b/m4/.gitignore @@ -3,6 +3,7 @@ !ax_compare_version.m4 !ax_cxx_compile_stdcxx.m4 +!ax_lua.m4 !ax_prog_perl_modules.m4 !ax_pthread.m4 !ax_python.m4 |