From: Adam Heath Date: Tue, 16 Sep 2003 18:02:31 +0000 (+0000) Subject: Ignore 'o:.*' in %fi. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f80a7bfe1c9fee30ba8bb2b7e798a4de033b350;p=dpkg Ignore 'o:.*' in %fi. --- diff --git a/ChangeLog b/ChangeLog index a75fee6e..c5fc812b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Sep 16 13:06:01 CDT 2003 Adam Heath + + * scripts/dpkg-genchanges.pl: Ignore 'o:.*' in %fi. + Tue Sep 16 13:02:10 CDT 2003 Adam Heath * scripts/dpkg-source.pl: Ignore 'o:.*' in %fi. diff --git a/scripts/dpkg-genchanges.pl b/scripts/dpkg-genchanges.pl index 2e8b46b6..48a3a83d 100755 --- a/scripts/dpkg-genchanges.pl +++ b/scripts/dpkg-genchanges.pl @@ -219,6 +219,7 @@ for $_ (keys %fi) { } elsif (!m/^X[BS]+-/i) { &unknown("parsed version of changelog"); } + } elsif (m/^o:.*/) { } else { &internerr("value from nowhere, with key >$_< and value >$v<"); } diff --git a/scripts/dpkg-source.pl b/scripts/dpkg-source.pl index cdf20501..f5dfdd74 100755 --- a/scripts/dpkg-source.pl +++ b/scripts/dpkg-source.pl @@ -205,6 +205,7 @@ if ($opmode eq 'build') { } else { &unknown("parsed version of changelog"); } + } elsif (m/^o:.*/) { } else { &internerr("value from nowhere, with key >$_< and value >$v<"); }