Oops, this bug was injected by me on 2012-03-28. I'm quite sorry for my long overlooking.
Regards, mpsuzuki Albert Astals Cid wrote: > configure.ac | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > New commits: > commit c516b341a9c2e0c9a985bc14ad3cae73bf10fb02 > Author: Thomas Petazzoni <[email protected]> > 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 > _______________________________________________ > poppler mailing list > [email protected] > http://lists.freedesktop.org/mailman/listinfo/poppler _______________________________________________ poppler mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/poppler
