Commit e71e226f authored by Yang Tse's avatar Yang Tse
Browse files

testcurl.pl: temporary change

Allow autobuilds to run a couple of days without filtering out aclocal
underquoted definition warnings.
parent b0eb963b
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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;
    }