aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-12-04 21:13:40 -0500
committerGlenn Morris2012-12-04 21:13:40 -0500
commitde0e31edcc3ab6ded038e43625b125d01c6b299d (patch)
tree1f25a722ff50fe3164368b227b8b3f969eb0c6f2
parent2e7cddd30317b7951c5425a5769ac9f33136f72f (diff)
downloademacs-de0e31edcc3ab6ded038e43625b125d01c6b299d.tar.gz
emacs-de0e31edcc3ab6ded038e43625b125d01c6b299d.zip
* configure.ac: Handle info/ files with or without ".info" extension.
-rw-r--r--ChangeLog7
-rw-r--r--configure.ac2
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index caec4db11a1..965c7882a86 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,10 @@
12012-12-05 Glenn Morris <rgm@gnu.org>
2
3 * configure.ac: Handle info/ files with or without ".info" extension.
4
12012-11-24 Eli Zaretskii <eliz@gnu.org> 52012-11-24 Eli Zaretskii <eliz@gnu.org>
2 6
3 * make-dist (nt): Adjust to changes in names of the *.manifest 7 * make-dist (nt): Adjust to changes in names of the *.manifest files.
4 files.
5 8
62012-11-21 Glenn Morris <rgm@gnu.org> 92012-11-21 Glenn Morris <rgm@gnu.org>
7 10
diff --git a/configure.ac b/configure.ac
index 321cbd267f2..594fe94214d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -814,7 +814,7 @@ if test "$MAKEINFO" = "no"; then
814 MAKEINFO=makeinfo 814 MAKEINFO=makeinfo
815 if test "x${with_makeinfo}" = "xno"; then 815 if test "x${with_makeinfo}" = "xno"; then
816 HAVE_MAKEINFO=no 816 HAVE_MAKEINFO=no
817 elif test ! -e $srcdir/info/emacs; then 817 elif test ! -e $srcdir/info/emacs && test ! -e $srcdir/info/emacs.info; then
818 AC_MSG_ERROR( [You do not seem to have makeinfo >= 4.7, and your 818 AC_MSG_ERROR( [You do not seem to have makeinfo >= 4.7, and your
819source tree does not seem to have pre-built manuals in the `info' directory. 819source tree does not seem to have pre-built manuals in the `info' directory.
820Either install a suitable version of makeinfo, or re-run configure 820Either install a suitable version of makeinfo, or re-run configure