In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/8a00c8caf7ac9ccd6bd8eaa8869321108bfef1c6?hp=47b1f0962035bb360c3ab2d10009defe22415877>
- Log ----------------------------------------------------------------- commit 8a00c8caf7ac9ccd6bd8eaa8869321108bfef1c6 Author: David Mitchell <[email protected]> Date: Wed Aug 12 19:11:24 2009 +0100 perlbug.PL assumes patchlevel.h has simple patch lists; but these days it contains macros that expand to patch lists; for now, just skip these macros. need a proper fix sometime. ----------------------------------------------------------------------- Summary of changes: utils/perlbug.PL | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/utils/perlbug.PL b/utils/perlbug.PL index 78c3b42..f53a009 100644 --- a/utils/perlbug.PL +++ b/utils/perlbug.PL @@ -41,6 +41,8 @@ my @patches; while (<PATCH_LEVEL>) { last if /^\s*}/; next if /^\s*#/; # preprocessor stuff + next if /PERL_GIT_UNPUSHED_COMMITS/; # XXX exapand instaed + next if /PERL_GIT_UNCOMMITTED_CHANGES/; # XXX exapand instaed chomp; s/^\s+,?\s*"?//; s/"?\s*,?$//; -- Perl5 Master Repository
