[Libreoffice-commits] online.git: autogen.sh

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Tue Feb 19 14:31:14 UTC 2019


 autogen.sh |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 14e998723fc0d234c798fa156c0df7b6e4a94478
Author:     Tor Lillqvist <tml at collabora.com>
AuthorDate: Tue Feb 19 16:30:43 2019 +0200
Commit:     Tor Lillqvist <tml at collabora.com>
CommitDate: Tue Feb 19 16:30:43 2019 +0200

    Make glibtoolize optional, as presumably was the thought
    
    Change-Id: I85b7247451d74182906e96a8a9aa0d7cdcbe1970

diff --git a/autogen.sh b/autogen.sh
index c68b5162c..9f1ac894c 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"


More information about the Libreoffice-commits mailing list