From 6d30b18ccb39aba0cb1ef16e049fb8f93d5038d2 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Sun, 3 Feb 2019 15:01:27 -0800 Subject: [PATCH] configure.ac: Fix underquoted AC_HELP_STRING call Signed-off-by: Anders Kaseorg --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e3f5626..ed369d1 100644 --- a/configure.ac +++ b/configure.ac @@ -285,7 +285,7 @@ PKG_CHECK_MODULES([TINFO], [tinfo], AC_SUBST([TINFO_LIBS], ["$TINFO_LDFLAGS -ltinfo"])],)])]) # Then try to find it in a specific install dir -AC_ARG_WITH(curses, AC_HELP_STRING([--with-curses=DIR], [Where curses is installed]), +AC_ARG_WITH(curses, [AC_HELP_STRING([--with-curses=DIR], [Where curses is installed])], [if test $withval != yes; then cv_curses=$withval fi