Commit 723a78ae authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

As Alexander Lazic pointed out, run the buildconf from the ares dir if that

is present instead of trying to duplicate that stuff in this script.
parent cd9d0d7d
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -226,12 +226,8 @@ ${AUTOCONF:-autoconf} || die "The autoconf command failed"

if test -d ares; then
  cd ares
  echo "buildconf: running ares/libtoolize"
$libtoolize --copy --automake --force || die "The libtoolize command failed"
  echo "buildconf: running ares/aclocal"
  ${ACLOCAL:-aclocal} $ACLOCAL_FLAGS || die "The ares aclocal command failed"
  echo "buildconf: running ares/autoconf"
  ${AUTOCONF:-autoconf}     || die "The ares autoconf command failed"
  echo "buildconf: running in ares"
  ./buildconf
  cd ..
fi