mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
run autoconf in the ares dir as well if the dir is present, after it has
been run "as usual"
This commit is contained in:
parent
ac2af59880
commit
b84607ff7b
@ -133,6 +133,14 @@ echo "buildconf: running autoheader"
|
|||||||
${AUTOHEADER:-autoheader} || die "The command '${AUTOHEADER:-autoheader}' failed"
|
${AUTOHEADER:-autoheader} || die "The command '${AUTOHEADER:-autoheader}' failed"
|
||||||
echo "buildconf: running autoconf"
|
echo "buildconf: running autoconf"
|
||||||
${AUTOCONF:-autoconf} || die "The command '${AUTOCONF:-autoconf}' failed"
|
${AUTOCONF:-autoconf} || die "The command '${AUTOCONF:-autoconf}' failed"
|
||||||
|
|
||||||
|
if test -d ares; then
|
||||||
|
echo "buildconf: running autoconf in the ares directory"
|
||||||
|
cd ares
|
||||||
|
${AUTOCONF:-autoconf} || die "The command '${AUTOCONF:-autoconf}' failed"
|
||||||
|
cd ..
|
||||||
|
fi
|
||||||
|
|
||||||
echo "buildconf: running automake"
|
echo "buildconf: running automake"
|
||||||
${AUTOMAKE:-automake} -a || die "The command '${AUTOMAKE:-automake} -a' failed"
|
${AUTOMAKE:-automake} -a || die "The command '${AUTOMAKE:-automake} -a' failed"
|
||||||
exit 0
|
exit 0
|
||||||
|
Loading…
Reference in New Issue
Block a user