Skip to content

Commit e13f1ed

Browse files
committed
Add .gitignore to m4/ and po/ directories
Instead of trying to keep up with files added by Gettext tools and Autotools, maintain a list of tracked files in those directories. (cherry picked from commit 5932466)
1 parent 715efe1 commit e13f1ed

File tree

3 files changed

+22
-58
lines changed

3 files changed

+22
-58
lines changed

.gitignore

+1-58
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# include/, m4/, and po/ all have their own .gitignore
12
*~
23
ABOUT-NLS
34
Makefile
@@ -8,64 +9,6 @@ build-aux/
89
config.log
910
config.status
1011
configure
11-
m4/Makefile
12-
m4/Makefile.in
13-
m4/codeset.m4
14-
m4/fcntl-o.m4
15-
m4/gettext.m4
16-
m4/glibc2.m4
17-
m4/glibc21.m4
18-
m4/iconv.m4
19-
m4/intdiv0.m4
20-
m4/intl.m4
21-
m4/intldir.m4
22-
m4/intlmacosx.m4
23-
m4/intmax.m4
24-
m4/inttypes-pri.m4
25-
m4/inttypes_h.m4
26-
m4/lcmessage.m4
27-
m4/lib-ld.m4
28-
m4/lib-link.m4
29-
m4/lib-prefix.m4
30-
m4/lock.m4
31-
m4/longlong.m4
32-
m4/nls.m4
33-
m4/po.m4
34-
m4/printf-posix.m4
35-
m4/progtest.m4
36-
m4/size_max.m4
37-
m4/stdint_h.m4
38-
m4/threadlib.m4
39-
m4/uintmax_t.m4
40-
m4/visibility.m4
41-
m4/wchar_t.m4
42-
m4/wint_t.m4
43-
m4/xsize.m4
44-
po/Makefile
45-
po/Makefile.in
46-
po/Makefile.in.in
47-
po/Makevars.template
48-
po/POTFILES
49-
po/Rules-quot
50-
po/boldquot.sed
51-
po/de.gmo
52-
53-
54-
55-
56-
57-
58-
59-
60-
po/es.gmo
61-
po/fr.gmo
62-
po/insert-header.sin
63-
po/nl.gmo
64-
po/pl.gmo
65-
po/pt.gmo
66-
po/quot.sed
67-
po/remove-potcdate.sin
68-
po/stamp-po
6912
src/.deps/
7013
src/Makefile
7114
src/Makefile.in

m4/.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except these files (be sure files to be tracked are added here!)
4+
!.gitignore
5+
!ax_append_flag.m4
6+
!ax_cflags_warn_all.m4
7+
!Makefile.am

po/.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except these files (be sure files to be tracked are added here!)
4+
!.gitignore
5+
!LINGUAS
6+
!Makevars
7+
!POTFILES.in
8+
!de.po
9+
!es.po
10+
!fr.po
11+
!nl.po
12+
!pl.po
13+
!pt.po
14+
!xdx.pot

0 commit comments

Comments
 (0)