Sort gitignore, adjust pattern for config.h
Don't ignore the files config.h and config.h.in, adjust the pattern to ignore config.h*. This matches an additional config.h.in~ too. Signed-off-by: Daniel Martin <consume.noise@gmail.com> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Uli Schlachter <psychon@znc.in> Tested-By: Ran Benita <ran234@gmail.com>
This commit is contained in:
parent
cbe54c97b3
commit
a8d11c36ed
|
@ -1,24 +1,23 @@
|
||||||
aclocal.m4
|
*.la
|
||||||
build-aux
|
|
||||||
libtool
|
|
||||||
m4/l*.m4
|
|
||||||
mkinstalldirs
|
|
||||||
config.h
|
|
||||||
config.h.in
|
|
||||||
config.log
|
|
||||||
config.status
|
|
||||||
configure
|
|
||||||
configure.lineno
|
|
||||||
.deps
|
|
||||||
.dirstamp
|
|
||||||
.libs
|
|
||||||
*.lo
|
*.lo
|
||||||
*.loT
|
*.loT
|
||||||
*.la
|
|
||||||
Makefile
|
|
||||||
Makefile.in
|
|
||||||
stamp-h1
|
|
||||||
*.o
|
*.o
|
||||||
*.pc
|
*.pc
|
||||||
*.tar.bz2
|
*.tar.bz2
|
||||||
*.tar.gz
|
*.tar.gz
|
||||||
|
.deps
|
||||||
|
.dirstamp
|
||||||
|
.libs
|
||||||
|
Makefile
|
||||||
|
Makefile.in
|
||||||
|
aclocal.m4
|
||||||
|
build-aux
|
||||||
|
config.h*
|
||||||
|
config.log
|
||||||
|
config.status
|
||||||
|
configure
|
||||||
|
configure.lineno
|
||||||
|
libtool
|
||||||
|
m4/l*.m4
|
||||||
|
mkinstalldirs
|
||||||
|
stamp-h1
|
||||||
|
|
Loading…
Reference in New Issue