configre: properly check for libtoolize
authorJohannes Stezenbach <js@sig21.net>
Sun Jan 29 11:42:30 2012 +0100 (2012-01-29)
changeset 28556a7dfa57d63a
parent 2854 a70abdbfa342
child 2856 7723b8457efa
configre: properly check for libtoolize

Fix a copy-n-paste typo, where the libtoolize check
would re-run the libtool check.

Signed-off-by: Johannes Stezenbach <js@sig21.net>
configure.ac
     1.1 --- a/configure.ac	Fri Jan 27 13:31:16 2012 +0100
     1.2 +++ b/configure.ac	Sun Jan 29 11:42:30 2012 +0100
     1.3 @@ -203,7 +203,7 @@
     1.4                         [Specify the full PATH to GNU libtoolize >= 1.5.26]),
     1.5          [ac_cv_path_LIBTOOLIZE=$withval])])
     1.6  AC_CACHE_CHECK([for GNU libtoolize >= 1.5.26], [ac_cv_path_LIBTOOLIZE],
     1.7 -    [AC_PATH_PROGS_FEATURE_CHECK([LIBTOOLIZE], [libtool],
     1.8 +    [AC_PATH_PROGS_FEATURE_CHECK([LIBTOOLIZE], [libtoolize],
     1.9          [[LIBTOOLIZE_ver=$($ac_path_LIBTOOLIZE --version 2>&1 \
    1.10                          |$EGREP '\(GNU libtool.*\) (2[[:digit:]]*\.|1\.6[[:digit:]]*\.|1\.5\.[2-9][[:digit:]]+)')
    1.11            test -n "$LIBTOOLIZE_ver" && ac_cv_path_LIBTOOLIZE=$ac_path_LIBTOOLIZE ac_path_LIBTOOLIZE_found=:]],