summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorGravatar 1Conan2026-06-20 00:33:09 +0800
committerGravatar 1Conan2026-06-20 00:33:09 +0800
commit70b4cb070c23387d72bb2feed04fded45f4ba535 (patch)
treed78dbd4f6e6a25a94fb0627ad235b5b3044739d1 /configure.ac
parent04d04f7cbaa4696504e91c1478ddd56160ed6776 (diff)
downloadlibirecovery-70b4cb070c23387d72bb2feed04fded45f4ba535.tar.gz
libirecovery-70b4cb070c23387d72bb2feed04fded45f4ba535.tar.bz2
fix undefined HAVE_READLINE on --without-tools
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 52a28b5..093d431 100644
--- a/configure.ac
+++ b/configure.ac
@@ -90,8 +90,8 @@ AS_IF([test "x$with_tools" = "xyes"], [
have_readline=yes],
[AC_MSG_NOTICE([NOTE: Building without readline support. If you want readline support, install its development package.])]
)
- AM_CONDITIONAL(HAVE_READLINE, test "x$have_readline" = "xyes")
])
+AM_CONDITIONAL(HAVE_READLINE, test "x$have_readline" = "xyes")
AM_CONDITIONAL(BUILD_TOOLS, test "x$with_tools" = "xyes")
AC_ARG_WITH([dummy],