diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-10-17 11:46:42 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-10-17 11:46:42 +0000 |
commit | b61fbbde4645a81de5019a23ecf13f0b7b33ace4 (patch) | |
tree | 31821180e80c69cf1bc4fc0fa618381bfda4d9f3 | |
parent | ec956b03345cd8d90330db406190b45d45817568 (diff) | |
download | curl-b61fbbde4645a81de5019a23ecf13f0b7b33ace4.tar.gz |
buildconf already runs ares/buildconf by itself if there is an ares subdir
present, so there's no use to doing it again in this script!
-rwxr-xr-x | tests/testcurl.pl | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/testcurl.pl b/tests/testcurl.pl index ab3e49da2..8d207d1cd 100755 --- a/tests/testcurl.pl +++ b/tests/testcurl.pl @@ -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)"; |