summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorFrank Lichtenheld <djpig@debian.org>2006-05-12 03:03:18 +0000
committerFrank Lichtenheld <djpig@debian.org>2006-05-12 03:03:18 +0000
commit5d4e21185681c29d388a75b96cc7b47e2af82353 (patch)
treef4c57fe46a91065e0f2ede2f487b3653534b7e76 /scripts
parente2ae718bbec0ed0b7f3940e22597fd959f95e2b5 (diff)
downloaddpkg-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-xscripts/changelog/debian.pl2
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;