[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Automake-commit] [SCM] GNU Automake branch, maint, updated. v1.12-32-g3
From: |
Stefano Lattarini |
Subject: |
[Automake-commit] [SCM] GNU Automake branch, maint, updated. v1.12-32-g3687a13 |
Date: |
Tue, 01 May 2012 12:05:41 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Automake".
http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=3687a13b055bfd6fb06ab27c9eb96eeee6e01341
The branch, maint has been updated
via 3687a13b055bfd6fb06ab27c9eb96eeee6e01341 (commit)
via 96a78f138f40f3325bcbd813d2924e5630d46121 (commit)
via c1c27cf134f49bbe71ae919bf8c39dd9467795b9 (commit)
from 5bcc8fa10fba5b0a504ff3735862359e878693a3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
Makefile.am | 5 +++--
NEWS | 9 +++++++--
bootstrap.sh | 7 ++++---
3 files changed, 14 insertions(+), 7 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 37b44cf..aab2786 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -862,8 +862,9 @@ update_copyright_env = \
update-copyright:
$(AM_V_GEN)set -e; \
current_year=`date +%Y` && test -n "$$current_year" \
- || { echo "$@: cannot get current year" >&1; exit 1; }; \
- sed -i "/^RELEASE_YEAR=/s/=.*$$/=$$current_year/" configure.ac; \
+ || { echo "$@: cannot get current year" >&2; exit 1; }; \
+ sed -i "/^RELEASE_YEAR=/s/=.*$$/=$$current_year/" \
+ bootstrap.sh configure.ac; \
excluded_re=`echo $(FETCHFILES) \
| sed -e 's|^|lib/|' -e 's| | lib/|g' -e 's, ,|,g'`; \
$(GIT) ls-files \
diff --git a/NEWS b/NEWS
index f2181f6..e7570d0 100644
--- a/NEWS
+++ b/NEWS
@@ -3,8 +3,8 @@ New in 1.12.1:
* WARNING: Future backward-incompatibilities!
- Autoconf 2.65 or later will be required by the next major Automake
- version (1.13). Until now, Automake has been working with any
- Autoconf version up to 2.62.
+ version (1.13). Until now, Automake has required Autoconf version
+ 2.62 or later.
- Starting from the next major Automake version (1.13), the rules to
build pdf, ps and dvi output from Texinfo input will use the '--tidy'
@@ -62,6 +62,11 @@ New in 1.12.1:
Bugs fixed in 1.12.1:
+* Bugs introduced by 1.12:
+
+ - Several weaknesses in the Automake's own build system test suite
+ have been fixed.
+
* Long-standing bugs:
- When the 'color-tests' option is in use, forcing of colored testsuite
diff --git a/bootstrap.sh b/bootstrap.sh
index 1cede01..683b9e9 100755
--- a/bootstrap.sh
+++ b/bootstrap.sh
@@ -36,6 +36,9 @@ VERSION=`sed -ne
'/AC_INIT/s/^[^[]*\[[^[]*\[\([^]]*\)\].*$/\1/p' configure.ac`
PACKAGE=automake
datadir=.
PERL_THREADS=0
+# This should be automatically updated by the 'update-copyright'
+# rule of our Makefile.
+RELEASE_YEAR=2012
# Override SHELL. This is required on DJGPP so that Perl's system()
# uses bash, not COMMAND.COM which doesn't quote arguments properly.
@@ -77,8 +80,6 @@ dosubst ()
{
rm -f $2
in=`echo $1 | sed 's,^.*/,,'`
- current_year=`date +%Y` && test -n "$current_year" \
- || { echo "$me: cannot get current year" >&2; exit 1; }
sed -e "address@hidden@%$APIVERSION%g" \
-e "address@hidden@%$PACKAGE%g" \
-e "address@hidden@%$PERL%g" \
@@ -86,7 +87,7 @@ dosubst ()
-e "address@hidden@%$BOOTSTRAP_SHELL%g" \
-e "address@hidden@%$VERSION%g" \
-e "address@hidden@%$datadir%g" \
- -e "address@hidden@%$current_year%g" \
+ -e "address@hidden@%$RELEASE_YEAR%G" \
-e "address@hidden@%Generated from $in; do not edit by hand.%g" \
$1 > $2
chmod a-w $2
hooks/post-receive
--
GNU Automake
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Automake-commit] [SCM] GNU Automake branch, maint, updated. v1.12-32-g3687a13,
Stefano Lattarini <=