[Libreoffice-commits] .: configure.in

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Thu Aug 30 14:51:35 PDT 2012


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

New commits:
commit 97606f3af75c883a711f8fca2fe5c1e8e13e77a4
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date:   Thu Aug 30 16:50:27 2012 -0500

    configure: fix missing "" around potentially empty variable
    
    Change-Id: Ieeb9f829c754b7bcc2f5fbe82a360e5625539803

diff --git a/configure.in b/configure.in
index 764fdac..e14fb66 100644
--- a/configure.in
+++ b/configure.in
@@ -12108,7 +12108,7 @@ fi
 # ===================================================================
 AC_MSG_CHECKING([whether to create huge library])
 MERGELIBS=
-if test $enable_mergelibs = yes; then
+if test "$enable_mergelibs" = "yes" ; then
     if test $WITH_BINFILTER = YES; then
         add_warning "--enable-mergelibs conflicts with --enable-binfilter. Disabling mergelibs."
         AC_MSG_RESULT([no])


More information about the Libreoffice-commits mailing list