Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
bf3126f6
Commit
bf3126f6
authored
Apr 21, 2010
by
Andreas Schwab
Browse files
Avoid non-portable shell command negation
* configure.in: Revert last change.
parent
acd1f317
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
ChangeLog
ChangeLog
+5
-0
configure
configure
+2
-2
configure.in
configure.in
+2
-2
No files found.
ChangeLog
View file @
bf3126f6
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".
...
...
configure
View file @
bf3126f6
...
...
@@ -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
...
...
configure.in
View file @
bf3126f6
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment