$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,
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);