From: David Mitchell Date: Wed, 12 Aug 2009 18:11:24 +0000 (+0100) Subject: perlbug.PL assumes patchlevel.h has simple patch lists; X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=8a00c8caf7ac9ccd6bd8eaa8869321108bfef1c6;p=p5sagit%2Fp5-mst-13.2.git 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. --- 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 () { 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*,?$//;