summaryrefslogtreecommitdiff
path: root/Porting
diff options
context:
space:
mode:
authorAbe Timmerman <abe@ztreet.demon.nl>2006-03-03 23:56:47 +0100
committerH.Merijn Brand <h.m.brand@xs4all.nl>2006-03-04 06:44:10 +0000
commitb89d399a31373fa709aa1afa4ee04b52768ea37b (patch)
treecc3c98363cd56adf71e5d2d6c57a861b90769349 /Porting
parent3c2b4a8b2af84a0e73d85ae9816a9ec64789a9e8 (diff)
downloadperl-b89d399a31373fa709aa1afa4ee04b52768ea37b.tar.gz
Re: [PATCH] include configure.com in Porting/checkcfgvar.pl
Message-Id: <200603032256.47170.abe@ztreet.demon.nl> p4raw-id: //depot/perl@27374
Diffstat (limited to 'Porting')
-rw-r--r--Porting/checkcfgvar.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Porting/checkcfgvar.pl b/Porting/checkcfgvar.pl
index cf14119c0d..1db53d757e 100644
--- a/Porting/checkcfgvar.pl
+++ b/Porting/checkcfgvar.pl
@@ -87,7 +87,7 @@ for my $cfg (@CFG) {
sub {
return if /^\#/ || /^\s*$/;
return if $cfg eq 'configure.com' &&
- ! /^\$ WC "(\w+)='(.*)'"$/;
+ ! /^\$\s+WC "(\w+)='(.*)'"$/;
# foo='bar'
# foo=bar
# $foo='bar' # VOS 5.8.x specialty
@@ -98,7 +98,7 @@ for my $cfg (@CFG) {
elsif (/^\$?(\w+)=(.*)$/) {
$cfg{$1}++;
}
- elsif (/^\$ WC "(\w+)='(.*)'"$/) {
+ elsif (/^\$\s+WC "(\w+)='(.*)'"$/) {
$cfg{$1}++;
} else {
warn "$cfg:$.:$_";