Преглед изворни кода

dpkg-parsechangelog: Fix handling of --all option

Frank Lichtenheld пре 18 година
родитељ
комит
352ac7c7d2
1 измењених фајлова са 2 додато и 1 уклоњено
  1. 2 1
      scripts/dpkg-parsechangelog.pl

+ 2 - 1
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;
     };