From 96772f25ce0a60033c25a134c771f9c0f971733f Mon Sep 17 00:00:00 2001 From: cjwatson <> Date: Thu, 18 Sep 2003 16:31:48 -0800 Subject: [PATCH] [project @ 2003-09-18 17:31:48 by cjwatson] Split $data->{package} on colons too when adding maintainers; should stop "Package: foo: bar" from blowing things up hideously. --- scripts/process.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/process.in b/scripts/process.in index 9cfe533d..7ce07e3c 100755 --- a/scripts/process.in +++ b/scripts/process.in @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $Id: process.in,v 1.83 2003/09/04 23:37:40 cjwatson Exp $ +# $Id: process.in,v 1.84 2003/09/18 17:31:48 cjwatson Exp $ # # Usage: process nn # Temps: incoming/Pnn @@ -1086,7 +1086,7 @@ sub checkmaintainers { } close(SOURCES); $anymaintfound=0; $anymaintnotfound=0; - for $p (split(m/[ \t?,()]+/,$data->{package})) { + for $p (split(m/[ \t?,():]+/,$data->{package})) { $p =~ y/A-Z/a-z/; if (defined $gSubscriptionDomain) { if (defined($pkgsrc{$p})) { -- 2.39.5