diff options
| author | 2026-06-20 00:33:09 +0800 | |
|---|---|---|
| committer | 2026-06-20 00:33:09 +0800 | |
| commit | 70b4cb070c23387d72bb2feed04fded45f4ba535 (patch) | |
| tree | d78dbd4f6e6a25a94fb0627ad235b5b3044739d1 | |
| parent | 04d04f7cbaa4696504e91c1478ddd56160ed6776 (diff) | |
| download | libirecovery-70b4cb070c23387d72bb2feed04fded45f4ba535.tar.gz libirecovery-70b4cb070c23387d72bb2feed04fded45f4ba535.tar.bz2 | |
fix undefined HAVE_READLINE on --without-tools
| -rw-r--r-- | configure.ac | 2 |
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], |
