From: Colin Walters Date: Sun, 29 Jan 2012 21:22:51 +0000 (-0500) Subject: autogen.sh: Fix check for libtool (we only need libtoolize) X-Git-Tag: 0.106~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4f7830c4d3200eac14b49f04f2c200e3cfd824c1;p=platform%2Fupstream%2Fpolkit.git autogen.sh: Fix check for libtool (we only need libtoolize) A pre-built libtool copy may not be installed on all systems; all we need is libtoolize. Signed-off-by: David Zeuthen --- diff --git a/autogen.sh b/autogen.sh index 426e875..d08b00a 100755 --- a/autogen.sh +++ b/autogen.sh @@ -26,7 +26,7 @@ touch ChangeLog } (grep "^AM_PROG_LIBTOOL" configure.ac >/dev/null) && { - (libtool --version) < /dev/null > /dev/null 2>&1 || { + (libtoolize --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have libtool installed." echo "You can get it from: ftp://ftp.gnu.org/pub/gnu/"