diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2012-05-05 12:34:06 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2012-05-05 12:34:06 +0200 |
commit | 01319a4e6779c61d05c2095382f2f6b6b3090a56 (patch) | |
tree | 1d3b64c8298560322b6ac680e98ff798d11a4934 /configure.in | |
parent | 843f790a746b7a0d63dc2509c40910b85f981883 (diff) | |
download | emacs-01319a4e6779c61d05c2095382f2f6b6b3090a56.tar.gz emacs-01319a4e6779c61d05c2095382f2f6b6b3090a56.tar.bz2 emacs-01319a4e6779c61d05c2095382f2f6b6b3090a56.zip |
* configure.in: Fix quoting bugs.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 81e8765990f..5fe14322a95 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 |