autogen.sh |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit d921cb6053694dd4dec0f25a8f29640129b873ee
Author:     Tor Lillqvist <t...@collabora.com>
AuthorDate: Wed May 20 11:55:28 2020 +0300
Commit:     Tor Lillqvist <t...@collabora.com>
CommitDate: Wed May 20 11:11:49 2020 +0200

    Look also for libtoolize on macOS, not just glibtoolize
    
    When build in lode, it gets installed only as "libtoolize".
    
    (Note that when bulding the iOS app, it is needed only by online's
    configure script. Not at all at build or run time, of course.)
    
    Change-Id: I7c96672b2660354aecd17db7004f5b79d707e245
    Reviewed-on: https://gerrit.libreoffice.org/c/online/+/94560
    Tested-by: Jenkins
    Reviewed-by: Tor Lillqvist <t...@collabora.com>

diff --git a/autogen.sh b/autogen.sh
index f5043bec5..701d38dbd 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -19,7 +19,7 @@ EOF
 if test `uname -s` = Linux; then
     libtoolize || failed "libtool"
 elif test `uname -s` = Darwin; then
-    glibtoolize || failed "Can't find glibtoolize. For instance use the one 
from https://brew.sh, 'brew install libtool', or build GNU libtool yourself."
+    libtoolize || glibtoolize || failed "Can't find libtoolize or glibtoolize. 
Use lode or instal it yourself."
 fi
 
 aclocal || failed "aclocal"
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to