ignore m4/ directory and (re)create it in autogen.sh
m4/ is used by auto* tools to store (mostly libtool) generated files. Without it being present, autoreconf&Co does not work, and with it present, git mentions untracked files. Fix both. Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
committed by
Ronnie Sahlberg
parent
83730f7d4c
commit
23b40111fc
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,6 +2,7 @@
|
||||
/depcomp
|
||||
/aclocal.m4
|
||||
/missing
|
||||
/m4/
|
||||
/config.guess
|
||||
/config.sub
|
||||
/install-sh
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
rm -rf autom4te.cache
|
||||
rm -f depcomp aclocal.m4 missing config.guess config.sub install-sh
|
||||
rm -f configure config.h.in config.h.in~ m4/libtool.m4 m4/lt*.m4 Makefile.in
|
||||
|
||||
mkdir -p m4
|
||||
autoreconf -fvi
|
||||
(cd m4 && for i in libtool.m4 lt*.m4; do
|
||||
echo /$i
|
||||
|
||||
Reference in New Issue
Block a user