diff options
author | Johannes Stezenbach <js@sig21.net> | 2012-01-29 11:42:30 +0100 |
---|---|---|
committer | Johannes Stezenbach <js@sig21.net> | 2012-01-29 11:42:30 +0100 |
commit | 067467bb18fad62a1adc3386d4716ea27762edcc (patch) | |
tree | 9172ed036330f2ca99d4ceab5ef8a690cd6ffc34 | |
parent | f173e77e326dc09b553a2d8ce9b323f88da4b22b (diff) | |
download | crosstool-ng-067467bb18fad62a1adc3386d4716ea27762edcc.tar.gz crosstool-ng-067467bb18fad62a1adc3386d4716ea27762edcc.tar.bz2 crosstool-ng-067467bb18fad62a1adc3386d4716ea27762edcc.zip |
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>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 1285f81c..20783997 100644 --- a/configure.ac +++ b/configure.ac @@ -203,7 +203,7 @@ AC_CACHE_VAL([ac_cv_path_LIBTOOLIZE], [Specify the full PATH to GNU libtoolize >= 1.5.26]), [ac_cv_path_LIBTOOLIZE=$withval])]) AC_CACHE_CHECK([for GNU libtoolize >= 1.5.26], [ac_cv_path_LIBTOOLIZE], - [AC_PATH_PROGS_FEATURE_CHECK([LIBTOOLIZE], [libtool], + [AC_PATH_PROGS_FEATURE_CHECK([LIBTOOLIZE], [libtoolize], [[LIBTOOLIZE_ver=$($ac_path_LIBTOOLIZE --version 2>&1 \ |$EGREP '\(GNU libtool.*\) (2[[:digit:]]*\.|1\.6[[:digit:]]*\.|1\.5\.[2-9][[:digit:]]+)') test -n "$LIBTOOLIZE_ver" && ac_cv_path_LIBTOOLIZE=$ac_path_LIBTOOLIZE ac_path_LIBTOOLIZE_found=:]], |