summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2018-10-30 11:25:33 +0200
committerTor Lillqvist <tml@collabora.com>2018-10-30 12:10:31 +0200
commit0b494853838ca9fc183ba9b67188c5e9cb8047bd (patch)
tree2031af6d24d3cb8629633fe737c2cfab3bd7f515 /autogen.sh
parentUserInfo: make members private (diff)
downloadonline-0b494853838ca9fc183ba9b67188c5e9cb8047bd.tar.gz
online-0b494853838ca9fc183ba9b67188c5e9cb8047bd.zip
Require running configure also in tree where you will build the iOS app
Take the user-visible name of the iOS app as a configure parameter --with-iosapp-name. The only purpose of running the configure script in this case is to get that expanded into the Info.plist file. You need autofoo to build LibreOffice core for iOS anyway, so this doesn't really add any new hurdles for a potential developer who wants to build the iOS app Bypass some checks that aren't relevant (and would fail) in this case. Could bypass a lot more of configure.ac in the ENABLE_IOSAPP case. Change-Id: Ia0cb82ad552da1bb597411748f0cd74f825774fa
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 1ce95d8404..1e558726f3 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -16,7 +16,9 @@ EOF
exit 1
}
-libtoolize || failed "libtool"
+if test `uname -s` = Linux; then
+ libtoolize || failed "libtool"
+fi
aclocal || failed "aclocal"