From 46dba06aa74c0f17095e4f3d4b118c28aa68efc9 Mon Sep 17 00:00:00 2001 From: doogie <> Date: Thu, 16 Aug 2001 05:55:17 -0800 Subject: [PATCH] [project @ 2001-08-16 06:55:17 by doogie] Support extraneous whitespace in Maintainers.override. --- scripts/process.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } -- 2.39.5