summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2019-02-19 16:30:43 +0200
committerTor Lillqvist <tml@collabora.com>2019-02-19 16:30:43 +0200
commit14e998723fc0d234c798fa156c0df7b6e4a94478 (patch)
tree66d940c99e49132612c5177c3d51858b45178a78 /autogen.sh
parentandroid: Various fixes to make the sending from the core to JS working. (diff)
downloadonline-14e998723fc0d234c798fa156c0df7b6e4a94478.tar.gz
online-14e998723fc0d234c798fa156c0df7b6e4a94478.zip
Make glibtoolize optional, as presumably was the thought
Change-Id: I85b7247451d74182906e96a8a9aa0d7cdcbe1970
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index c68b5162c5..9f1ac894c7 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -19,7 +19,10 @@ EOF
if test `uname -s` = Linux; then
libtoolize || failed "libtool"
elif test `uname -s` = Darwin; then
- glibtoolize || failed "Can't find glibtoolize - cf. https://brew.sh and brew install libtool"
+ echo 'Having glibtoolize is mandatory only if you intend to use the alternative "brew" method. See ios/README.' >&2
+ echo 'So unless you plan to do that, it does not matter if glibtoolize is not be found below:' >&2
+ glibtoolize
+ echo 'There. The script now continues. Errors below are fatal.' >&2
fi
aclocal || failed "aclocal"