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 | |
parent | 843f790a746b7a0d63dc2509c40910b85f981883 (diff) | |
download | emacs-01319a4e6779c61d05c2095382f2f6b6b3090a56.tar.gz emacs-01319a4e6779c61d05c2095382f2f6b6b3090a56.tar.bz2 emacs-01319a4e6779c61d05c2095382f2f6b6b3090a56.zip |
* configure.in: Fix quoting bugs.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 7ed97f5b29d..a30ecc13d46 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-05-05 Andreas Schwab <schwab@linux-m68k.org> + + * configure.in: Fix quoting bugs. + 2012-05-04 Glenn Morris <rgm@gnu.org> * configure.in (INFO_EXT, INFO_OPTS): New output variables. 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 |