From: Daniel Stenberg Date: Fri, 9 May 2003 08:17:41 +0000 (+0000) Subject: oops, run libtoolize as the first tool X-Git-Tag: curl-7_10_5~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e6c267fb4c9e1fbb07f6b125fc2a373fa3f60a2f;p=curl oops, run libtoolize as the first tool --- diff --git a/buildconf b/buildconf index 17f184b59..490a1f450 100755 --- a/buildconf +++ b/buildconf @@ -114,6 +114,8 @@ echo "buildconf: libtool version $lt_version (ok)" # run the correct scripts now +echo "buildconf: running libtoolize" +${LIBTOOLIZE:-libtoolize} --copy --automake || die "The command '${LIBTOOLIZE:-libtoolize} --copy --automake' failed" echo "buildconf: running aclocal" ${ACLOCAL:-aclocal} || die "The command '${AUTOHEADER:-aclocal}' failed" echo "buildconf: running autoheader" @@ -122,7 +124,4 @@ echo "buildconf: running autoconf" ${AUTOCONF:-autoconf} || die "The command '${AUTOCONF:-autoconf}' failed" echo "buildconf: running automake" ${AUTOMAKE:-automake} -a || die "The command '${AUTOMAKE:-automake} -a' failed" -echo "buildconf: running libtoolize" -${LIBTOOLIZE:-libtoolize} --copy --automake || die "The command '${LIBTOOLIZE:-libtoolize} --copy --automake' failed" - exit 0