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

Tor Lillqvist tml at collabora.com
Thu Mar 9 09:08:54 UTC 2017


 configure.ac |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 226e83087657ab40f0eeac5d7ece312b04c11705
Author: Tor Lillqvist <tml at collabora.com>
Date:   Thu Mar 9 11:03:05 2017 +0200

    No need for doublequotes in the argument to AC_MSG_RESULT
    
    The brackets already act as quotes in .ac files. Having additional
    quotes causes the result to look like:
    
    checking whether we want to fetch tarballs... "yes, if we use them"
    
    which is not consistent.
    
    Change-Id: Icc5dfc4c6b58d1d7a3d4bb280cc3da3dc21e515a

diff --git a/configure.ac b/configure.ac
index 6ff62e9..e1aec21 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4793,10 +4793,10 @@ AC_SUBST(TARFILE_LOCATION)
 AC_MSG_CHECKING([whether we want to fetch tarballs])
 if test "$enable_fetch_external" != "no"; then
     if test "$with_all_tarballs" = "yes"; then
-        AC_MSG_RESULT(["yes, all of them"])
+        AC_MSG_RESULT([yes, all of them])
         DO_FETCH_TARBALLS="ALL"
     else
-        AC_MSG_RESULT(["yes, if we use them"])
+        AC_MSG_RESULT([yes, if we use them])
         DO_FETCH_TARBALLS="TRUE"
     fi
 else


More information about the Libreoffice-commits mailing list