summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2009-08-12 19:11:24 +0100
committerDavid Mitchell <davem@iabyn.com>2009-08-12 19:43:58 +0100
commit42701d4a9b11c2bf0b4e746b508f335e8cbccd29 (patch)
tree33b9a8627fe46b484bc04b9ef14b4009891e6b7f
parent54cd7feefc8c5a721e40bbc17735f0744c165975 (diff)
downloadperl-42701d4a9b11c2bf0b4e746b508f335e8cbccd29.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. (cherry picked from commit 8a00c8caf7ac9ccd6bd8eaa8869321108bfef1c6)
-rw-r--r--utils/perlbug.PL2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/perlbug.PL b/utils/perlbug.PL
index 97cf0c85d7..e62c6e84fe 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*,?$//;