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!
This commit is contained in:
Daniel Stenberg 2006-10-17 11:46:42 +00:00
parent ec956b0334
commit b61fbbde46
1 changed files with 0 additions and 16 deletions

View File

@ -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)";