From 01319a4e6779c61d05c2095382f2f6b6b3090a56 Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sat, 5 May 2012 12:34:06 +0200 Subject: [PATCH] * configure.in: Fix quoting bugs. --- ChangeLog | 4 ++++ configure.in | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7ed97f5b29..a30ecc13d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-05-05 Andreas Schwab + + * configure.in: Fix quoting bugs. + 2012-05-04 Glenn Morris * configure.in (INFO_EXT, INFO_OPTS): New output variables. diff --git a/configure.in b/configure.in index 81e8765990..5fe14322a9 100644 --- a/configure.in +++ b/configure.in @@ -2919,7 +2919,7 @@ case "$opsys" in ## option to use it. darwin) LIBS_TERMCAP="-lncurses" ;; - gnu*) [ "x$LIBS_TERMCAP" = x ] && LIBS_TERMCAP="-lncurses" ;; + gnu*) test -z "$LIBS_TERMCAP" && LIBS_TERMCAP="-lncurses" ;; freebsd) AC_MSG_CHECKING([whether FreeBSD is new enough to use terminfo]) @@ -2941,7 +2941,7 @@ fail; ;; netbsd) - if [ "x$LIBS_TERMCAP" != "x-lterminfo" ]; then + if test "x$LIBS_TERMCAP" != "x-lterminfo"; then TERMINFO=no LIBS_TERMCAP="-ltermcap" fi -- 2.20.1