fix #16: look for glibtoolize on macosx

This commit is contained in:
TLINDEN
2016-07-10 20:50:14 +02:00
parent 46d93eb275
commit 240d5f0a4a

View File

@@ -73,8 +73,11 @@ fi
if test "$mode" = "config"; then if test "$mode" = "config"; then
mkdir -p ./config mkdir -p ./config
if ! command -v libtoolize >/dev/null 2>&1; then lt=libtoolize
echo "could not find libtool." 1>&2 case `uname` in Darwin*) lt=glibtoolize;; esac
if ! command -v $lt >/dev/null 2>&1 ; then
echo "could not find $lt." 1>&2
exit 1 exit 1
fi fi