Skip to content
Snippets Groups Projects
Commit b61fbbde authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

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!
parent ec956b03
No related branches found
No related tags found
No related merge requests found
......@@ -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)";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment