[Libreoffice-commits] online.git: configure.ac

Tor Lillqvist (via logerrit) logerrit at kemper.freedesktop.org
Thu Nov 21 09:31:48 UTC 2019


 configure.ac |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit bdc27777987459c54a1d488c014e987d330aa19d
Author:     Tor Lillqvist <tml at collabora.com>
AuthorDate: Thu Nov 21 11:30:18 2019 +0200
Commit:     Tor Lillqvist <tml at collabora.com>
CommitDate: Thu Nov 21 11:30:18 2019 +0200

    Require use of --with-vendor when configuring for the iOS app
    
    You want something meaningful to show up in Help > About, not just
    your account's login name.
    
    Change-Id: I1f30516200552f2bbe70091efa3b7029954a681a

diff --git a/configure.ac b/configure.ac
index 5d1a63689..e737bcc2b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -393,6 +393,9 @@ AC_SUBST(APP_NAME)
 
 VENDOR=
 AC_MSG_CHECKING([for vendor])
+if test "$enable_iosapp" = yes -a -z "$with_vendor"; then
+    AC_MSG_ERROR([You must use --with-vendor when configuring for the iOS app])
+fi
 if test -z "$with_vendor" -o "$with_vendor" = "no"; then
     VENDOR="$USERNAME"
 


More information about the Libreoffice-commits mailing list