| author | Raphaël Hertzog <hertzog@debian.org> | |
| Thu, 24 Mar 2011 14:45:22 +0000 (15:45 +0100) | ||
| committer | Raphaël Hertzog <hertzog@debian.org> | |
| Thu, 24 Mar 2011 14:45:22 +0000 (15:45 +0100) |
| debian/changelog | patch | blob | history | |
| scripts/dpkg-source.pl | patch | blob | history |
diff --git a/debian/changelog b/debian/changelog
--- a/debian/changelog
+++ b/debian/changelog
It contains a list of packages that the source can build along with
their sections and priorities. Closes: #619131
* Remove duplicate word in german translation of dpkg(1). Closes: #616096
+ * Strip repeated non-significant spaces before and after newlines
+ in Uploaders. Closes: #598922
[ Jonathan Nieder ]
* Remove support for use of synchronous sync(2), due to its pernicious
diff --git a/scripts/dpkg-source.pl b/scripts/dpkg-source.pl
--- a/scripts/dpkg-source.pl
+++ b/scripts/dpkg-source.pl
set_source_package($v);
$fields->{$_} = $v;
} elsif (m/^Uploaders$/i) {
- ($fields->{$_} = $v) =~ s/[\r\n]/ /g; # Merge in a single-line
+ ($fields->{$_} = $v) =~ s/\s*[\r\n]\s*/ /g; # Merge in a single-line
} elsif (m/^Build-(Depends|Conflicts)(-Indep)?$/i) {
my $dep;
my $type = field_get_dep_type($_);
