[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r99983: Avoid non-portable shell comm
From: |
Andreas Schwab |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r99983: Avoid non-portable shell command negation |
Date: |
Wed, 21 Apr 2010 23:44:48 +0200 |
User-agent: |
Bazaar (2.0.3) |
------------------------------------------------------------
revno: 99983
committer: Andreas Schwab <address@hidden>
branch nick: emacs
timestamp: Wed 2010-04-21 23:44:48 +0200
message:
Avoid non-portable shell command negation
* configure.in: Revert last change.
modified:
ChangeLog
configure
configure.in
=== modified file 'ChangeLog'
--- a/ChangeLog 2010-04-21 16:41:29 +0000
+++ b/ChangeLog 2010-04-21 21:44:48 +0000
@@ -1,3 +1,8 @@
+2010-04-21 Andreas Schwab <address@hidden>
+
+ Avoid non-portable shell command negation
+ * configure.in: Revert last change.
+
2010-04-21 Jan Djärv <address@hidden>
* configure.in: Change "if test ! -f" to "if ! test -f".
=== modified file 'configure'
--- a/configure 2010-04-21 16:41:29 +0000
+++ b/configure 2010-04-21 21:44:48 +0000
@@ -5651,7 +5651,7 @@
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 @@
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
=== modified file 'configure.in'
--- a/configure.in 2010-04-21 16:41:29 +0000
+++ b/configure.in 2010-04-21 21:44:48 +0000
@@ -783,7 +783,7 @@
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 @@
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
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r99983: Avoid non-portable shell command negation,
Andreas Schwab <=