From: Wayne Davison Date: Thu, 9 Feb 2006 03:49:34 +0000 (+0000) Subject: One more fix for the scanning of configure's args. X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/commitdiff_plain/f53a732cbac2823fa181da7203f06527ab16ec67 One more fix for the scanning of configure's args. --- diff --git a/verify-patches b/verify-patches index 59f4ff5..219a2ae 100755 --- a/verify-patches +++ b/verify-patches @@ -85,7 +85,7 @@ foreach my $diff (@ARGV) { } if (!defined($conf_opts) && s#^\s+\./configure\s+##) { chomp($conf_opts = $_); - $conf_opts =~ s/\s+\(.*?\)//; + $conf_opts =~ s/\s*\(.*?\)//; } } close IN;