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

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Nov 7 11:40:51 UTC 2018


 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 51fdcdb424933136b8408c8eacc330d2bec9fc1c
Author:     Andras Timar <andras.timar at collabora.com>
AuthorDate: Wed Nov 7 12:39:47 2018 +0100
Commit:     Andras Timar <andras.timar at collabora.com>
CommitDate: Wed Nov 7 12:39:47 2018 +0100

    configure: undefined option is "" not "no"
    
    Change-Id: I39cba79aa98b7e0d13a53b37cba0833c5a5267a8

diff --git a/configure.ac b/configure.ac
index b70958b71..39e4cf3b3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -434,7 +434,7 @@ AM_CONDITIONAL([ENABLE_DEBUG], [test "$ENABLE_DEBUG" = "true"])
 
 mobile_app=
 AC_MSG_CHECKING([Is this a mobile app])
-if test "$enable_gtkapp" != "no" -o "$enable_iosapp" != "no"; then
+if test "$enable_gtkapp" = "yes" -o "$enable_iosapp" = "yes"; then
      AC_MSG_RESULT([Yes])
      mobile_app=true;
 else


More information about the Libreoffice-commits mailing list