1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-10-27 12:15:34 +03:00

Fix test in configure.ac

Broken in commit b4847d60.
This commit is contained in:
Nick Wellnhofer
2022-09-04 00:46:32 +02:00
parent 202b8e1954
commit e47df37be9

View File

@@ -788,7 +788,7 @@ fi
AC_SUBST(WITH_OUTPUT)
AM_CONDITIONAL(WITH_OUTPUT_SOURCES, test "$WITH_OUTPUT" = "1")
if test "$WITH_ICONV" != "1" && "$with_iso8859x" = "no" ; then
if test "$WITH_ICONV" != "1" && test "$with_iso8859x" = "no" ; then
echo Disabling ISO8859X support
WITH_ISO8859X=0
else