Last-minute bug fixes; moved to 1.1e
diff --git a/ChangeLog b/ChangeLog
index 6915ea4..eb1f33c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,13 @@
Wed Sep 11 11:54:44 1996 Tom Tromey <tromey@creche.cygnus.com>
- * Released version 1.1d.
+ * Released version 1.1e.
+
+ * automake.in ($GNITS_VERSION_PATTERN): Handle non-alpha
+ releases.
+
+ * configure.in: Version 1.1e.
+
+ * automake.in (handle_texinfo): Distribute .info file.
Sun Sep 8 09:00:37 1996 Tom Tromey <tromey@creche.cygnus.com>
diff --git a/Makefile.in b/Makefile.in
index 8c840c6..089b4b6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
-# Makefile.in generated automatically by automake 1.1d from Makefile.am
+# Makefile.in generated automatically by automake 1.1e from Makefile.am
# Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
@@ -74,7 +74,7 @@
MAKEINFO = makeinfo
TEXI2DVI = texi2dvi
-INFOS = automake.info[-0-9]*
+INFOS = automake.info automake.info[-0-9]*
INFO_DEPS = automake.info
DVIS = automake.dvi
TEXINFOS = automake.texi
diff --git a/NEWS b/NEWS
index 325f176..24928a3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-New in 1.1d:
+New in 1.1e:
* Bug fixes
* Better DejaGNU support
* Added no-installinfo option
diff --git a/TODO b/TODO
index 7687c38..fb88b3a 100644
--- a/TODO
+++ b/TODO
@@ -1,6 +1,12 @@
Priorities for release:
[ none ]
+must at least partially rewrite dist system (to handle distributing
+info files, which is currently somewhat broken).
+
+when checking version numbers in AUTOMAKE_OPTIONS, an alpha release
+should compare less than the full release; eg "1.0" < "1.0a" < "1.1".
+
Per Bothner says:
Per> 1) Being able to build a set of non-source programs
Per> from source porgrams, without necessarily linking them together.
diff --git a/automake.in b/automake.in
index 20d6c4e..39350c2 100755
--- a/automake.in
+++ b/automake.in
@@ -41,7 +41,7 @@
$RULE_PATTERN = "^([\$a-zA-Z_.][-.a-zA-Z0-9_(){}/]*) *:";
$MACRO_PATTERN = "^([A-Za-z][A-Za-z0-9_]*)[ \t]*=[ \t]*(.*)\$";
$BOGUS_MACRO_PATTERN = "^([^ \t]*)[ \t]*=[ \t]*(.*)\$";
-$GNITS_VERSION_PATTERN = "[0-9]+\\.[0-9]+([a-z]|\\.[0-9]+)";
+$GNITS_VERSION_PATTERN = "[0-9]+\\.[0-9]+([a-z]|\\.[0-9]+)?";
# Constants to define the "strictness" level.
$FOREIGN = 0;
@@ -1261,7 +1261,9 @@
. join (' ', @texi_deps)
. "\n\n");
- push (@infos_list, $infobase . '.info[-0-9]*');
+ # FIXME: this distributes too much. How to find out precisely
+ # which files will be generated by `makeinfo'?
+ push (@infos_list, $infobase . '.info', $infobase . '.info[-0-9]*');
push (@info_deps_list, $infobase . '.info');
push (@dvis_list, $infobase . '.dvi');
diff --git a/configure b/configure
index 33ac5d0..1371f94 100755
--- a/configure
+++ b/configure
@@ -601,7 +601,7 @@
#define PACKAGE "$PACKAGE"
EOF
-VERSION=1.1d
+VERSION=1.1e
cat >> confdefs.h <<EOF
#define VERSION "$VERSION"
diff --git a/configure.in b/configure.in
index 5758e65..3b0cd1e 100644
--- a/configure.in
+++ b/configure.in
@@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(automake.in)
-AM_INIT_AUTOMAKE(automake, 1.1d)
+AM_INIT_AUTOMAKE(automake, 1.1e)
AC_PROG_MAKE_SET
AC_ARG_PROGRAM
diff --git a/m4/Makefile.in b/m4/Makefile.in
index 80f5587..79e6495 100644
--- a/m4/Makefile.in
+++ b/m4/Makefile.in
@@ -1,4 +1,4 @@
-# Makefile.in generated automatically by automake 1.1d from Makefile.am
+# Makefile.in generated automatically by automake 1.1e from Makefile.am
# Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
diff --git a/tests/Makefile.in b/tests/Makefile.in
index 4e5ce1f..e6f2b38 100644
--- a/tests/Makefile.in
+++ b/tests/Makefile.in
@@ -1,4 +1,4 @@
-# Makefile.in generated automatically by automake 1.1d from Makefile.am
+# Makefile.in generated automatically by automake 1.1e from Makefile.am
# Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
diff --git a/version.texi b/version.texi
index 3c0be12..3f53ec7 100644
--- a/version.texi
+++ b/version.texi
@@ -1,3 +1,3 @@
@set UPDATED 8 September 1996
-@set EDITION 1.1d
-@set VERSION 1.1d
+@set EDITION 1.1e
+@set VERSION 1.1e