The following commit has been merged in the master branch:
commit 444bb7094b3543a4a67be891129fb013b77056d4
Author: James McCoy <[email protected]>
Date: Tue Oct 25 21:54:56 2011 -0400
dd-list: Correct handling of maintainer names which have a comma when using
-d
Signed-off-by: James McCoy <[email protected]>
diff --git a/scripts/dd-list.pl b/scripts/dd-list.pl
index 7b233dc..f25dc25 100755
--- a/scripts/dd-list.pl
+++ b/scripts/dd-list.pl
@@ -118,7 +118,7 @@ if ($use_dctrl) {
}
if (/^Uploaders:\s+(.*)$/m) {
$uploaders=$1;
- @uploaders = split /\s*,\s*/, $uploaders;
+ @uploaders = split /(?<=>)\s*,\s*/, $uploaders;
}
if (defined $maintainer && defined $package) {
--
Git repository for devscripts
--
To unsubscribe, send mail to [email protected].