]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid non-portable shell command negation
authorAndreas Schwab <schwab@linux-m68k.org>
Wed, 21 Apr 2010 21:44:48 +0000 (23:44 +0200)
committerAndreas Schwab <schwab@linux-m68k.org>
Wed, 21 Apr 2010 21:44:48 +0000 (23:44 +0200)
* configure.in: Revert last change.

ChangeLog
configure
configure.in

index dcb6b0ce2f1d06bb69dc3172cfea179c83f8e344..14f631e0c96c932297974d3c47015f163a60ac07 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-04-21  Andreas Schwab  <schwab@linux-m68k.org>
+
+       Avoid non-portable shell command negation
+       * configure.in: Revert last change.
+
 2010-04-21  Jan Djärv  <jan.h.d@swipnet.se>
 
        * configure.in: Change "if test ! -f" to "if ! test -f".
index dcbb6a693af4667f7b342180b334f44891e6ccc1..7c124fc4fbb0ca030aff29af07220f1e71a3c68e 100755 (executable)
--- a/configure
+++ b/configure
@@ -5651,7 +5651,7 @@ fi
 if test "$MAKEINFO" = "no"; then
   if test "x${with_makeinfo}" = "xno"; then
     MAKEINFO=off
-  elif ! test -e $srcdir/info/emacs; then
+  elif test ! -e $srcdir/info/emacs; then
     { { $as_echo "$as_me:$LINENO: error: You do not seem to have makeinfo >= 4.6, and your
 source tree does not seem to have pre-built manuals in the \`info' directory.
 Either install a suitable version of makeinfo, or re-run configure
@@ -27361,7 +27361,7 @@ echo creating src/Makefile
   mv -f Makefile.new Makefile
 )
 
-if ! test -f src/.gdbinit && test -f $srcdir/src/.gdbinit; then
+if test ! -f src/.gdbinit && test -f $srcdir/src/.gdbinit; then
   echo creating src/.gdbinit
   echo source $srcdir/src/.gdbinit > src/.gdbinit
 fi
index aaccdbfa2a997502839bba06436a5b1a2696f8ae..c768e33e0021c247ad00e8c606186565a3c0b0e3 100644 (file)
@@ -783,7 +783,7 @@ fi
 if test "$MAKEINFO" = "no"; then
   if test "x${with_makeinfo}" = "xno"; then
     MAKEINFO=off
-  elif ! test -e $srcdir/info/emacs; then
+  elif test ! -e $srcdir/info/emacs; then
     AC_MSG_ERROR( [You do not seem to have makeinfo >= 4.6, and your
 source tree does not seem to have pre-built manuals in the `info' directory.
 Either install a suitable version of makeinfo, or re-run configure
@@ -3232,7 +3232,7 @@ echo creating src/Makefile
   mv -f Makefile.new Makefile
 )
 
-if ! test -f src/.gdbinit && test -f $srcdir/src/.gdbinit; then
+if test ! -f src/.gdbinit && test -f $srcdir/src/.gdbinit; then
   echo creating src/.gdbinit
   echo source $srcdir/src/.gdbinit > src/.gdbinit
 fi