From: doogie <> Date: Thu, 16 Aug 2001 13:55:17 +0000 (-0800) Subject: [project @ 2001-08-16 06:55:17 by doogie] X-Git-Tag: release/2.6.0~1123 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=46dba06aa74c0f17095e4f3d4b118c28aa68efc9;p=debbugs.git [project @ 2001-08-16 06:55:17 by doogie] Support extraneous whitespace in Maintainers.override. --- diff --git a/scripts/process.in b/scripts/process.in index 1e2dca6a..fd3fb6ac 100755 --- a/scripts/process.in +++ b/scripts/process.in @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $Id: process.in,v 1.31 2001/08/16 06:43:21 doogie Exp $ +# $Id: process.in,v 1.32 2001/08/16 06:55:17 doogie Exp $ # # Usage: process nn # Temps: incoming/Pnn @@ -890,7 +890,7 @@ sub checkmaintainers { while () { m/^\n$/ && next; m/^\s*$/ && next; - m/^(\S+)\s+(\S.*\S)\n$/ || &quit("maintainers.override bogus \`$_'"); + m/^(\S+)\s+(\S.*\S)\s*\n$/ || &quit("maintainers.override bogus \`$_'"); $a= $1; $b= $2; $a =~ y/A-Z/a-z/; $maintainerof{$1}= $2; }