about summary refs log tree commit diff
path: root/configure.ac
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2008-03-28 11:56:46 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2008-03-28 11:56:46 +0000
commit0db1d3f8396945324208dea0ef01ad828c149932 (patch)
tree39e7c780a41e1a8d60a2cce76243e85b874834c6 /configure.ac
parent50d9cdeae4a63a9a628ed9ec218206e660322e68 (diff)
downloadzsh-0db1d3f8396945324208dea0ef01ad828c149932.tar.gz
zsh-0db1d3f8396945324208dea0ef01ad828c149932.tar.xz
zsh-0db1d3f8396945324208dea0ef01ad828c149932.zip
users/12739: fix multiple arguments to --with-term-lib
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 88a7d836d..c14f6562d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -656,7 +656,7 @@ dnl On HPUX, Hcurses is reported to work better than curses.
 dnl Prefer ncurses to curses on all systems.  tinfo isn't very common now.
 AC_ARG_WITH(term-lib,
 AC_HELP_STRING([--with-term-lib=LIBS], [search space-separated LIBS for terminal handling]),
-[if test x$withval != xno && test x$withval != x ; then
+[if test "x$withval" != xno && test "x$withval" != x ; then
   termcap_curses_order="$withval"
   AC_SEARCH_LIBS(tigetstr, [$termcap_curses_order])
 else