1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

testcurl.pl: temporary change

Allow autobuilds to run a couple of days without filtering out aclocal
underquoted definition warnings.
This commit is contained in:
Yang Tse 2011-12-23 11:08:06 +01:00
parent b0eb963bc7
commit e71e226f6b

View File

@ -431,11 +431,12 @@ if ($git) {
unlink "autom4te.cache";
# generate the build files
logit "invoke buildconf, but filter off aclocal underquoted definition warnings";
# logit "invoke buildconf, but filter off aclocal underquoted definition warnings";
logit "invoke buildconf";
open(F, "./buildconf 2>&1 |") or die;
open(LOG, ">$buildlog") or die;
while (<F>) {
next if /warning: underquoted definition of/;
# next if /warning: underquoted definition of/;
print;
print LOG;
}