summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorAndras Timar <andras.timar@collabora.com>2019-03-08 09:23:21 +0100
committerAndras Timar <andras.timar@collabora.com>2019-06-15 11:01:56 +0200
commitf4fa13c6f1730d4945cc36799b3614c9132a610c (patch)
tree91f2d8806e765d6170281891833778b23fe10fdf /configure.ac
parent4a2da5313fe49c730bf8f4037294b6ac40d84acd (diff)
missing $ in fornt of variable name in configure.ac
Change-Id: I782314620173aa188ae51808e54815b9161e8c4f
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 38f5a2794c0b..ffb9452cfce9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10509,7 +10509,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)
@@ -10524,7 +10524,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)