summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2011-12-27 13:23:47 +0100
committerYang Tse <yangsita@gmail.com>2011-12-27 13:23:47 +0100
commit33c2e1cafc781631f977876540b9187f4e56db37 (patch)
tree8e925313712ab660f28edc7b26e8dc2bbffaceb6
parent84f736981c1c52d0fb122de5ab35cb8e15e645ba (diff)
downloadcurl-33c2e1cafc781631f977876540b9187f4e56db37.tar.gz
testcurl.pl: 82c344a3 follow-up
-rwxr-xr-xtests/testcurl.pl11
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl
index 73fe03a40..42bf64be5 100755
--- a/tests/testcurl.pl
+++ b/tests/testcurl.pl
@@ -73,7 +73,7 @@ use vars qw($name $email $desc $confopts $runtestopts $setupfile $mktarball
$timestamp $notes);
# version of this script
-$version='2011-06-23';
+$version='2011-12-27';
$fixed=0;
# Determine if we're running from git or a canned copy of curl,
@@ -436,11 +436,12 @@ if ($git) {
open(F, "./buildconf 2>&1 |") or die;
open(LOG, ">$buildlog") or die;
while (<F>) {
+ my $ll = $_;
# ignore messages pertaining to third party m4 files we don't care
- next if /aclocal\/gtk.m4/;
- next if /aclocal\/gtkextra.m4/;
- print;
- print LOG;
+ next if ($ll =~ /aclocal\/gtk\.m4/);
+ next if ($ll =~ /aclocal\/gtkextra\.m4/);
+ print $ll;
+ print LOG $ll;
}
close(F);
close(LOG);