X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=ltt-control%2Fautogen.sh;h=f0c7b68f69298f7e2ed04ce48b995d78a1078290;hb=56bf1966ff781f03aaad4a27e1fa3a01f76e4bbd;hp=709cee9e0ed7043a0b822b7bf15554f8cc320e35;hpb=28ae24a06e5110cef596e104f6aea610da7edc80;p=ltt-control.git diff --git a/ltt-control/autogen.sh b/ltt-control/autogen.sh index 709cee9..f0c7b68 100755 --- a/ltt-control/autogen.sh +++ b/ltt-control/autogen.sh @@ -59,7 +59,7 @@ DIE=0 } } -(automake-1.7 --version) < /dev/null > /dev/null 2>&1 || { +(automake --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`automake' installed." echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/" @@ -69,7 +69,7 @@ DIE=0 # if no automake, don't bother testing for aclocal -test -n "$NO_AUTOMAKE" || (aclocal-1.7 --version) < /dev/null > /dev/null 2>&1 || { +test -n "$NO_AUTOMAKE" || (aclocal --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: Missing \`aclocal'. The version of \`automake'" echo "installed doesn't appear recent enough." @@ -126,14 +126,14 @@ do libtoolize --force --copy fi fi - echo "Running aclocal-1.7 $aclocalinclude ..." - aclocal-1.7 $aclocalinclude + echo "Running aclocal $aclocalinclude ..." + aclocal $aclocalinclude if grep "^AM_CONFIG_HEADER" configure.in >/dev/null; then echo "Running autoheader..." autoheader fi - echo "Running automake-1.7 --gnu $am_opt ..." - automake-1.7 --add-missing --gnu $am_opt + echo "Running automake --gnu $am_opt ..." + automake --add-missing --gnu $am_opt echo "Running autoconf ..." autoconf )