summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Duret-Lutz <adl@gnu.org>2003-07-15 21:21:48 +0000
committerAlexandre Duret-Lutz <adl@gnu.org>2003-07-15 21:21:48 +0000
commit4a93561dfb84f8d82cd6ea3fe86afca793101a9f (patch)
tree871261c1e50339b280a1b4d17e95f91223fe72cb
parentc85a6e3c14fca92342c4472db050603d1866464c (diff)
downloadautomake-4a93561dfb84f8d82cd6ea3fe86afca793101a9f.tar.gz
2003-07-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (tiny change)
* automake.in (scan_autoconf_traces): Trace AM_ENABLE_MULTILIB to render $seen_multilib functional again.
-rw-r--r--ChangeLog5
-rwxr-xr-xautomake.in5
2 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d4591be91..42352901d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-07-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (tiny change)
+
+ * automake.in (scan_autoconf_traces): Trace AM_ENABLE_MULTILIB to
+ render $seen_multilib functional again.
+
2003-07-10 Alexandre Duret-Lutz <adl@gnu.org>
* configure.in: Bump version to 1.7.6a.
diff --git a/automake.in b/automake.in
index ab22ab159..8bddc6028 100755
--- a/automake.in
+++ b/automake.in
@@ -5269,6 +5269,7 @@ sub scan_autoconf_traces ($)
AC_SUBST => 1,
AM_AUTOMAKE_VERSION => 1,
AM_CONDITIONAL => 2,
+ AM_ENABLE_MULTILIB => 0,
AM_GNU_GETTEXT => 0,
AM_INIT_AUTOMAKE => 0,
AM_MAINTAINER_MODE => 0,
@@ -5366,6 +5367,10 @@ sub scan_autoconf_traces ($)
{
$configure_cond{$args[1]} = $here;
}
+ elsif ($macro eq 'AM_ENABLE_MULTILIB')
+ {
+ $seen_multilib = $here;
+ }
elsif ($macro eq 'AM_GNU_GETTEXT')
{
$seen_gettext = $here;