diff options
author | David Mitchell <davem@iabyn.com> | 2009-08-12 19:11:24 +0100 |
---|---|---|
committer | David Mitchell <davem@iabyn.com> | 2009-08-12 19:11:24 +0100 |
commit | 8a00c8caf7ac9ccd6bd8eaa8869321108bfef1c6 (patch) | |
tree | d6b89d407e33a0c29f582017ada97ac8c7fa54e0 /utils/perlbug.PL | |
parent | 47b1f0962035bb360c3ab2d10009defe22415877 (diff) | |
download | perl-8a00c8caf7ac9ccd6bd8eaa8869321108bfef1c6.tar.gz |
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.
Diffstat (limited to 'utils/perlbug.PL')
-rw-r--r-- | utils/perlbug.PL | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/perlbug.PL b/utils/perlbug.PL index 78c3b428a1..f53a009fc1 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*,?$//; |