[SCM] GNU Autoconf source repository branch, master, updated. v2.64-64-g3abf99a
"Paolo Bonzini" <[email protected]>
| Newsgroups | gmane.comp.sysutils.autoconf.cvs |
|---|---|
| Message-ID | <[email protected]> |
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 Autoconf source repository".
http://git.sv.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=3abf99ae39c6598769a90be472800bc61b393008
The branch, master has been updated
via 3abf99ae39c6598769a90be472800bc61b393008 (commit)
from 15f8838bb6239ebc16beb8472de0217a10de3d5e (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 -----------------------------------------------------------------
commit 3abf99ae39c6598769a90be472800bc61b393008
Author: Paolo Bonzini <[email protected]>
Date: Mon Oct 26 17:04:05 2009 +0100
Pass Autom4te path down to programs that autoreconf invokes.
* bin/autoreconf.in (autom4te): New variable. Export its value
as $ENV{'AUTOM4TE'}. Suggested by Peter Johansson.
* THANKS: Update.
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 7 +++++++
THANKS | 1 +
bin/autoreconf.in | 2 ++
3 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index a2f56f7..4f93ee3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2009-10-26 Paolo Bonzini <[email protected]>
+
+ Pass Autom4te path down to programs that autoreconf invokes.
+ * bin/autoreconf.in (autom4te): New variable. Export its value
+ as $ENV{'AUTOM4TE'}. Suggested by Peter Johansson.
+ * THANKS: Update.
+
2009-10-20 Eric Blake <[email protected]>
Fix AC_TYPE_UINT64_T on Tru64 with gcc 3.4.4.
diff --git a/THANKS b/THANKS
index 5ecd953..aca138b 100644
--- a/THANKS
+++ b/THANKS
@@ -294,6 +294,7 @@ Per Øyvind Karlsen [email protected]
Peter Breitenlohner [email protected]
Peter Eisentraut [email protected]
Peter Hendrickson [email protected]
+Peter Johansson [email protected]
Peter O'Gorman [email protected]
Peter Palfrader [email protected]
Peter Simons [email protected]
diff --git a/bin/autoreconf.in b/bin/autoreconf.in
index e7b60ef..9f6d706 100644
--- a/bin/autoreconf.in
+++ b/bin/autoreconf.in
@@ -109,6 +109,7 @@ Written by David J. MacKenzie and Akim Demaille.
# Lib files.
my $autoconf = $ENV{'AUTOCONF'} || '@bindir@/@autoconf-name@';
my $autoheader = $ENV{'AUTOHEADER'} || '@bindir@/@autoheader-name@';
+my $autom4te = $ENV{'AUTOM4TE'} || '@bindir@/@autom4te-name@';
my $automake = $ENV{'AUTOMAKE'} || 'automake';
my $aclocal = $ENV{'ACLOCAL'} || 'aclocal';
my $libtoolize = $ENV{'LIBTOOLIZE'} || 'libtoolize';
@@ -677,6 +678,7 @@ parse_args;
# Autoreconf all the given configure.ac. Unless `--no-recursive' is passed,
# AC_CONFIG_SUBDIRS will be traversed in &autoreconf_current_directory.
+$ENV{'AUTOM4TE'} = $autom4te;
for my $directory (@ARGV)
{
require_configure_ac ($directory);
hooks/post-receive
--
GNU Autoconf source repository