]> granicus.if.org Git - curl/commitdiff
buildconf already runs ares/buildconf by itself if there is an ares subdir
authorDaniel Stenberg <daniel@haxx.se>
Tue, 17 Oct 2006 11:46:42 +0000 (11:46 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 17 Oct 2006 11:46:42 +0000 (11:46 +0000)
present, so there's no use to doing it again in this script!

tests/testcurl.pl

index ab3e49da26309c6cf46d0ce934e7ca00f208f6b2..8d207d1cda98d6ecefa703695077dfb63987deee 100755 (executable)
@@ -380,22 +380,6 @@ if ($CVS) {
     else {
       mydie "buildconf was NOT successful";
     }
-
-    if($confopts =~ /--enable-ares/) {
-        logit "run buildconf for ares";
-        chdir "ares";
-        open(F, "./buildconf 2>&1 |") or die;
-        open(LOG, ">$buildlog") or die;
-        while (<F>) {
-            next if /warning: underquoted definition of/;
-            print;
-            print LOG;
-        }
-        close(F);
-        close(LOG);
-        chdir "..";
-    }
-
   }
   else {
     logit "buildconf was successful (dummy message)";