summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-01-29 16:22:51 -0500
committerDavid Zeuthen <zeuthen@gmail.com>2012-06-06 09:15:43 -0400
commit4f7830c4d3200eac14b49f04f2c200e3cfd824c1 (patch)
treecd5320008e72bfd507d0dc1ba53ed6ce44a68f82 /autogen.sh
parent34add7cb9384bbca98e3d58000cf021dc58b7b04 (diff)
downloadpolkit-4f7830c4d3200eac14b49f04f2c200e3cfd824c1.tar.gz
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 <zeuthen@gmail.com>
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
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/"