diff options
author | Florian Ragwitz <rafl@debian.org> | 2008-06-25 03:22:41 +0200 |
---|---|---|
committer | Sam Vilain <sam@vilain.net> | 2008-12-19 14:35:37 +1300 |
commit | 5e137bc214f9c21ed33df8110b67005fb915c4e7 (patch) | |
tree | 5f6dd101fa009ed8dbb8ce9addcd310fa3de2335 | |
parent | 1a95a0fc1d08604e251c0f7ff5da9078aec9eaa7 (diff) | |
download | perl-5e137bc214f9c21ed33df8110b67005fb915c4e7.tar.gz |
Fix up .gitignore files some more
* Ignore generated macros.all in .gitignore for Sys::Syslog.
* Add .gitignore for generated files of GDBM_File.
* Ignore DynaLoader.xs in .gitignore for DynaLoader.
* Put every pattern in .gitignore files on a single line.
* Add some generated .xs files .gitignore of Encode.
* Ignore RealPPPort.xs in .gitignore for Devel::PPPort.
* Ignore ODBM_File.pm in .gitignore for lib/.
* Add .gitignore for generated files of XS::APItest.
* Add .gitignore for Compress::Raw::Zlib.
* Ignore GDBM_File.pm in .gitignore for lib/.
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | ext/.gitignore | 3 | ||||
-rw-r--r-- | ext/Compress/Raw/Zlib/.gitignore | 1 | ||||
-rw-r--r-- | ext/Devel/PPPort/.gitignore | 1 | ||||
-rw-r--r-- | ext/DynaLoader/.gitignore | 1 | ||||
-rw-r--r-- | ext/Encode/.gitignore | 6 | ||||
-rw-r--r-- | ext/GDBM_File/.gitignore | 1 | ||||
-rw-r--r-- | ext/Sys/Syslog/.gitignore | 1 | ||||
-rw-r--r-- | ext/XS/APItest/.gitignore | 1 | ||||
-rw-r--r-- | lib/.gitignore | 2 |
10 files changed, 18 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index d3c477eab7..40e7eb2bfe 100644 --- a/.gitignore +++ b/.gitignore @@ -22,7 +22,8 @@ /x2p/makefile.old # general build products -*.o *.a +*.o +*.a # ? ext.libs diff --git a/ext/.gitignore b/ext/.gitignore index 7c7b8db486..616f315c6a 100644 --- a/ext/.gitignore +++ b/ext/.gitignore @@ -1,5 +1,6 @@ # ignore generated .c files, and other module build traces -*.c *.bs +*.c +*.bs blib pm_to_blib Makefile diff --git a/ext/Compress/Raw/Zlib/.gitignore b/ext/Compress/Raw/Zlib/.gitignore new file mode 100644 index 0000000000..091348d9ec --- /dev/null +++ b/ext/Compress/Raw/Zlib/.gitignore @@ -0,0 +1 @@ +constants.* diff --git a/ext/Devel/PPPort/.gitignore b/ext/Devel/PPPort/.gitignore index 817c1902e8..032b772d08 100644 --- a/ext/Devel/PPPort/.gitignore +++ b/ext/Devel/PPPort/.gitignore @@ -2,3 +2,4 @@ #ignored in /ext #/ppport.h /module*.c +/RealPPPort.xs diff --git a/ext/DynaLoader/.gitignore b/ext/DynaLoader/.gitignore index 9280799f4c..0fe7984201 100644 --- a/ext/DynaLoader/.gitignore +++ b/ext/DynaLoader/.gitignore @@ -1,3 +1,4 @@ !/dlutils.c /DynaLoader.pm /XSLoader.pm +/DynaLoader.xs diff --git a/ext/Encode/.gitignore b/ext/Encode/.gitignore index 830062554a..3ac370bd56 100644 --- a/ext/Encode/.gitignore +++ b/ext/Encode/.gitignore @@ -1,5 +1,11 @@ !/encengine.c /Byte/Byte.xs +/CN/CN.xs +/EBCDIC/EBCDIC.xs +/JP/JP.xs +/KR/KR.xs +/Symbol/Symbol.xs +/TW/TW.xs *.exh *.h !/Encode/encode.h diff --git a/ext/GDBM_File/.gitignore b/ext/GDBM_File/.gitignore new file mode 100644 index 0000000000..7ba0a5a289 --- /dev/null +++ b/ext/GDBM_File/.gitignore @@ -0,0 +1 @@ +const-*.inc diff --git a/ext/Sys/Syslog/.gitignore b/ext/Sys/Syslog/.gitignore index 2a06e93b55..2f2399bced 100644 --- a/ext/Sys/Syslog/.gitignore +++ b/ext/Sys/Syslog/.gitignore @@ -1 +1,2 @@ *.inc +macros.all diff --git a/ext/XS/APItest/.gitignore b/ext/XS/APItest/.gitignore new file mode 100644 index 0000000000..7ba0a5a289 --- /dev/null +++ b/ext/XS/APItest/.gitignore @@ -0,0 +1 @@ +const-*.inc diff --git a/lib/.gitignore b/lib/.gitignore index 61d5659638..e6facd30ef 100644 --- a/lib/.gitignore +++ b/lib/.gitignore @@ -21,6 +21,7 @@ /File/Glob.pm /File/GlobMapper.pm /Filter/Util +/GDBM_File.pm /Hash /I18N/Langinfo.pm /IO.pm @@ -45,6 +46,7 @@ /Module/Pluggable.pm /Module/Pluggable /O.pm +/ODBM_File.pm /Opcode.pm /POSIX.pm /POSIX.pod |