diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-05 17:46:18 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-05 17:46:18 +0000 |
commit | 5963b987d451051651e0ba84aeab7c2129af761e (patch) | |
tree | 16c9359875ea172a914fcbb2c44a78eeefc49185 /utils | |
parent | e3e5e1ead913680c13757a1af36ab093b6ff8390 (diff) | |
download | perl-5963b987d451051651e0ba84aeab7c2129af761e.tar.gz |
perlbug tweak to grok local_patches better
p4raw-id: //depot/perl@5550
Diffstat (limited to 'utils')
-rw-r--r-- | utils/perlbug.PL | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/perlbug.PL b/utils/perlbug.PL index f46564ea5f..f6280d25b8 100644 --- a/utils/perlbug.PL +++ b/utils/perlbug.PL @@ -37,8 +37,8 @@ my @patches; while (<PATCH_LEVEL>) { last if /^\s*}/; chomp; - s/^\s+,?"?//; - s/"?,?$//; + s/^\s+,?\s*"?//; + s/"?\s*,?$//; s/(['\\])/\\$1/g; push @patches, $_ unless $_ eq 'NULL'; } |