summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2022-09-04 00:46:32 +0200
committerNick Wellnhofer <wellnhofer@aevum.de>2022-09-04 00:46:32 +0200
commite47df37be9f602cd6ad51b250fbcd7ffa20c136f (patch)
treeed9d76f23c648abdac4428a6ce6d82e4bc3bc132 /configure.ac
parent202b8e1954af9703a453e6891c2a6cccc1a8df4f (diff)
downloadlibxml2-e47df37be9f602cd6ad51b250fbcd7ffa20c136f.tar.gz
Fix test in configure.ac
Broken in commit b4847d60.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7dbef1b9..d58898d1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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