[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-6.0' - configure.ac
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Fri Mar 8 08:23:52 UTC 2019
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 35c4f64a2d17dec439d6e6fc09a4fe25b0341953
Author: Andras Timar <andras.timar at collabora.com>
AuthorDate: Fri Mar 8 09:23:21 2019 +0100
Commit: Andras Timar <andras.timar at collabora.com>
CommitDate: Fri Mar 8 09:23:21 2019 +0100
missing $ in fornt of variable name in configure.ac
Change-Id: I782314620173aa188ae51808e54815b9161e8c4f
diff --git a/configure.ac b/configure.ac
index 9d5b914bfb0f..ca59940e1c31 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10057,7 +10057,7 @@ fi
# Pdfium?
AC_MSG_CHECKING([whether to build PDFium])
ENABLE_PDFIUM=
-if test \( -z "$enable_pdfium" -a "ENABLE_PDFIMPORT" == "TRUE" \) -o "$enable_pdfium" = yes; then
+if test \( -z "$enable_pdfium" -a "$ENABLE_PDFIMPORT" == "TRUE" \) -o "$enable_pdfium" = yes; then
AC_MSG_RESULT([yes])
ENABLE_PDFIUM=TRUE
AC_DEFINE(HAVE_FEATURE_PDFIUM)
@@ -10072,7 +10072,7 @@ dnl Check for poppler
dnl ===================================================================
ENABLE_POPPLER=
AC_MSG_CHECKING([whether to build Poppler])
-if test \( -z "$enable_poppler" -a "ENABLE_PDFIMPORT" == "TRUE" \) -o "$enable_poppler" = yes; then
+if test \( -z "$enable_poppler" -a "$ENABLE_PDFIMPORT" == "TRUE" \) -o "$enable_poppler" = yes; then
AC_MSG_RESULT([yes])
ENABLE_POPPLER=TRUE
AC_DEFINE(HAVE_FEATURE_POPPLER)
More information about the Libreoffice-commits
mailing list