From: Andreas Schwab Date: Wed, 21 Apr 2010 21:44:48 +0000 (+0200) Subject: Avoid non-portable shell command negation X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~439 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bf3126f629060f80c1a8a05f17b44af77d733a52;p=emacs.git Avoid non-portable shell command negation * configure.in: Revert last change. --- diff --git a/ChangeLog b/ChangeLog index dcb6b0ce2f1..14f631e0c96 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-04-21 Andreas Schwab + + Avoid non-portable shell command negation + * configure.in: Revert last change. + 2010-04-21 Jan Djärv * configure.in: Change "if test ! -f" to "if ! test -f". diff --git a/configure b/configure index dcbb6a693af..7c124fc4fbb 100755 --- 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 diff --git a/configure.in b/configure.in index aaccdbfa2a9..c768e33e002 100644 --- a/configure.in +++ b/configure.in @@ -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