In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/f58022876005bfeea1653994a1075151b3f2a25a?hp=10132e4734d95bbfaf62a850f78607d5e5817fb5>
- Log ----------------------------------------------------------------- commit f58022876005bfeea1653994a1075151b3f2a25a Author: Rafael Garcia-Suarez <[email protected]> Date: Wed Sep 16 18:09:00 2009 +0200 Since gitignores are advisory, we don't need the specific unignore patterns So we can ignore all Makefile.PL and all *.c files, since the ones we want are already added. M ext/.gitignore commit 97f763693dc27dbc0e3124f2f1bbf418e5daa074 Author: Rafael Garcia-Suarez <[email protected]> Date: Wed Sep 16 18:06:39 2009 +0200 Revert "much simpler .gitignore for ext/" The negative patterns don't appear to un-ignore correctly what they should (at least with git version 1.6.0.4) This reverts commit 594c64d48c897be7522145d9f634599aae38b149. M ext/.gitignore ----------------------------------------------------------------------- Summary of changes: ext/.gitignore | 17 ++++++++--------- 1 files changed, 8 insertions(+), 9 deletions(-) diff --git a/ext/.gitignore b/ext/.gitignore index 7525886..48ab117 100644 --- a/ext/.gitignore +++ b/ext/.gitignore @@ -1,9 +1,8 @@ -* -!*.pm -!*.pl -!*.xs -!*.t -!*.h -!*/t/* -!*/lib/* - +# ignore generated .c files, and other module build traces +*.c +*.bs +blib +pm_to_blib +Makefile +Makefile.PL +ppport.h -- Perl5 Master Repository
