emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108133: * configure.in: Fix quoting


From: Andreas Schwab
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108133: * configure.in: Fix quoting bugs.
Date: Sat, 05 May 2012 12:34:06 +0200
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 108133
committer: Andreas Schwab <address@hidden>
branch nick: emacs
timestamp: Sat 2012-05-05 12:34:06 +0200
message:
  * configure.in: Fix quoting bugs.
modified:
  ChangeLog
  configure.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2012-05-04 06:45:03 +0000
+++ b/ChangeLog 2012-05-05 10:34:06 +0000
@@ -1,3 +1,7 @@
+2012-05-05  Andreas Schwab  <address@hidden>
+
+       * configure.in: Fix quoting bugs.
+
 2012-05-04  Glenn Morris  <address@hidden>
 
        * configure.in (INFO_EXT, INFO_OPTS): New output variables.

=== modified file 'configure.in'
--- a/configure.in      2012-05-04 06:45:03 +0000
+++ b/configure.in      2012-05-05 10:34:06 +0000
@@ -2919,7 +2919,7 @@
   ##  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 @@
     ;;
 
   netbsd)
-    if [ "x$LIBS_TERMCAP" != "x-lterminfo" ]; then
+    if test "x$LIBS_TERMCAP" != "x-lterminfo"; then
       TERMINFO=no
       LIBS_TERMCAP="-ltermcap"
     fi


reply via email to

[Prev in Thread] Current Thread [Next in Thread]