[poppler] configure.ac
Albert Astals Cid
aacid at kemper.freedesktop.org
Sun May 3 06:49:10 PDT 2015
configure.ac | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit c516b341a9c2e0c9a985bc14ad3cae73bf10fb02
Author: Thomas Petazzoni <thomas.petazzoni at free-electrons.com>
Date: Sun May 3 15:27:19 2015 +0200
Fix invalid shell comparaison in libtiff test
Bug #115523
diff --git a/configure.ac b/configure.ac
index 56a972e..d4ed287 100644
--- a/configure.ac
+++ b/configure.ac
@@ -231,7 +231,7 @@ CPPFLAGS="$CPPFLAGS $LIBTIFF_CFLAGS"
CXXFLAGS="$CXXFLAGS $LIBTIFF_CFLAGS"
LIBS="$LIBS $LIBTIFF_LIBS"
if test x$enable_libtiff = xyes; then
- if test x"$LIBTIFF_LIBS" != ; then
+ if test x"$LIBTIFF_LIBS" != x; then
AC_CHECK_FUNC([TIFFOpen],,
AC_MSG_ERROR("*** libtiff library not found ***"))
else
More information about the poppler
mailing list