diff options
author | Frank Lichtenheld <djpig@debian.org> | 2006-05-12 03:03:18 +0000 |
---|---|---|
committer | Frank Lichtenheld <djpig@debian.org> | 2006-05-12 03:03:18 +0000 |
commit | 5d4e21185681c29d388a75b96cc7b47e2af82353 (patch) | |
tree | f4c57fe46a91065e0f2ede2f487b3653534b7e76 /scripts | |
parent | e2ae718bbec0ed0b7f3940e22597fd959f95e2b5 (diff) | |
download | dpkg-5d4e21185681c29d388a75b96cc7b47e2af82353.tar.gz |
Allow '+' and '.' in distribution names in Debian changelogs.
Based on a patch by John Wright.
Closes: #361171
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/changelog/debian.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/changelog/debian.pl b/scripts/changelog/debian.pl index b3db0033c..66d433b3f 100755 --- a/scripts/changelog/debian.pl +++ b/scripts/changelog/debian.pl @@ -52,7 +52,7 @@ $expect='first heading'; while (<STDIN>) { s/\s*\n$//; # printf(STDERR "%-39.39s %-39.39s\n",$expect,$_); - if (m/^(\w[-+0-9a-z.]*) \(([^\(\) \t]+)\)((\s+[-0-9a-z]+)+)\;/i) { + if (m/^(\w[-+0-9a-z.]*) \(([^\(\) \t]+)\)((\s+[-+0-9a-z.]+)+)\;/i) { if ($expect eq 'first heading') { $f{'Source'}= $1; $f{'Version'}= $2; |