* tests/sinclude.test: Check for sinclude.
Report from Roberto Bagnara.
+2003-11-12 Alexandre Duret-Lutz <adl@gnu.org>
+
+ * automake.in (scan_autoconf_traces): Honor sinclude.
+ * tests/sinclude.test: Check for sinclude.
+ Report from Roberto Bagnara.
+
2003-11-11 Alexandre Duret-Lutz <adl@gnu.org>
* Makefile.am: Do not rerun `make dist' after tagging, `make distcheck'
Robert Bihlmeyer robbe@orcus.priv.at
Robert Boehne rboehne@ricardo-us.com
Robert Collins robert.collins@itdomain.com.au
+Roberto Bagnara bagnara@cs.unipr.it
Ronald Landheer ronald@landheer.com
Rusty Ballinger rusty@rlyeh.engr.sgi.com
Ryan T. Sammartino ryants@shaw.ca
AM_PROG_CC_C_O => 0,
m4_include => 1,
m4_sinclude => 1,
+ sinclude => 1,
);
my $traces = ($ENV{AUTOCONF} || 'autoconf') . " ";
{
$seen_cc_c_o = $where;
}
- elsif ($macro eq 'm4_include' || $macro eq 'm4_sinclude')
+ elsif ($macro eq 'm4_include'
+ || $macro eq 'm4_sinclude'
+ || $macro eq 'sinclude')
{
# Some modified versions of Autoconf don't use
# forzen files. Consequently it's possible that we see all
#! /bin/sh
-# Copyright (C) 1998, 2001, 2002 Free Software Foundation, Inc.
+# Copyright (C) 1998, 2001, 2002, 2003 Free Software Foundation, Inc.
#
# This file is part of GNU Automake.
#
AC_SUBST(MAGICALHOG)
END
+cat > sub/g.m4 << 'END'
+AC_SUBST(GREPME)
+END
+
: > Makefile.am
+echo 'sinclude(sub/g.m4)' >> acinclude.m4
+
$ACLOCAL
echo 'm4_sinclude(sub/p.m4)' >> aclocal.m4
grep MAGICALPIG Makefile.in
grep MAGICALHOG Makefile.in
+grep GREPME Makefile.in