From 6763e21afb77b250ad4416ff921d46c63ea12443 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 4 Mar 2015 15:43:05 -0800 Subject: [PATCH] Accept glibtoolize as libtoolize Of course, we don't really run it, autoreconf does. We just err if neither is available. glibtoolize is the name it is shipped under on OS X. Reported by Adam. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index a81d2aacd..ee980cfab 100755 --- a/autogen.sh +++ b/autogen.sh @@ -20,7 +20,7 @@ which pkg-config || { } echo -n "checking for libtoolize... " -which libtoolize || { +which glibtoolize libtoolize || { echo "*** No libtoolize (libtool) found, please install it ***" exit 1 }