]> err.no Git - dpkg/commitdiff
dpkg-parsechangelog: Fix handling of --all option
authorFrank Lichtenheld <djpig@debian.org>
Thu, 6 Dec 2007 04:18:23 +0000 (05:18 +0100)
committerFrank Lichtenheld <djpig@debian.org>
Thu, 6 Dec 2007 04:18:23 +0000 (05:18 +0100)
scripts/dpkg-parsechangelog.pl

index d8b346bc5e8d6c88f20c7b6157aaa8ebf3035ba7..26b09295be78de3fe0b30ebd6957b2763e9f2a48 100755 (executable)
@@ -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;
     };