The branch, parsechangelog has been updated
via 352ac7c7d2ed1bdad84096d1c33a11ca75dc43c5 (commit)
from 2d2cda573d619b203b944d48e80acb56026be4f9 (commit)
- Shortlog ------------------------------------------------------------
352ac7c dpkg-parsechangelog: Fix handling of --all option
Summary of changes:
scripts/dpkg-parsechangelog.pl | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
-----------------------------------------------------------------------
Details of changes:
commit 352ac7c7d2ed1bdad84096d1c33a11ca75dc43c5
Author: Frank Lichtenheld <[EMAIL PROTECTED]>
Date: Thu Dec 6 05:18:23 2007 +0100
dpkg-parsechangelog: Fix handling of --all option
diff --git a/scripts/dpkg-parsechangelog.pl b/scripts/dpkg-parsechangelog.pl
index d8b346b..26b0929 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;
};
--
dpkg's main repository
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]