From: Frank Lichtenheld Date: Thu, 6 Dec 2007 04:18:23 +0000 (+0100) Subject: dpkg-parsechangelog: Fix handling of --all option X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=352ac7c7d2ed1bdad84096d1c33a11ca75dc43c5;p=dpkg dpkg-parsechangelog: Fix handling of --all option --- diff --git a/scripts/dpkg-parsechangelog.pl b/scripts/dpkg-parsechangelog.pl index d8b346bc..26b09295 100755 --- a/scripts/dpkg-parsechangelog.pl +++ b/scripts/dpkg-parsechangelog.pl @@ -74,7 +74,8 @@ while (@ARGV) { if (m/^-l/ && length($_)>2) { $changelogfile=$POSTMATCH; next; } m/^--$/ && last; m/^-[cfnostuv]/ && next; - m/^--(all|count|file|format|from|offset|since|to|until)(.*)$/ && do { + m/^--all$/ && next; + m/^--(count|file|format|from|offset|since|to|until)(.*)$/ && do { push(@ap, shift(@ARGV)) unless $2; next; };