[tree-ssa]: Andersen points-to analysis

Diego Novillo dnovillo@redhat.com
Sat Nov 30 12:43:00 GMT 2002


On Tue, 26 Nov 2002, Pop Sébastian wrote:

> On Tue, Nov 26, 2002 at 07:59:25PM +0100, Pop Sébastian wrote:
> 
> > After that everything worked fine.
> > 
> 
> ...except for the following... (at the end of Stage1)
> 
> -----
> 
> make[2]: Entering directory `/home/pop/gcc/tree-ssa/bin/libbanshee'
> cd ../../gcc/libbanshee && \
>   automake-1.7 --gnu  --ignore-deps Makefile
> /bin/sh: automake-1.7: command not found
> 
Andrew has just run into the same problem.  It comes from
aclocal.m4 trying to call automake with the version number as a
suffix.  This seems to fix the problem:


	* aclocal.m4: Don't call aclocal and automake with a
	version number suffix.
	* Makefile.in, config.h.in, configure,
	engine/Makefile.in, libcompat/Makefile.in,
	points-to/Makefile.in: Regenerate.

Index: aclocal.m4
===================================================================
RCS file: /cvs/gcc/gcc/libbanshee/Attic/aclocal.m4,v
retrieving revision 1.1.2.3
diff -d -u -p -r1.1.2.3 aclocal.m4
--- aclocal.m4	26 Nov 2002 02:24:40 -0000	1.1.2.3
+++ aclocal.m4	28 Nov 2002 18:21:56 -0000
@@ -96,9 +96,9 @@ _AM_IF_OPTION([no-define],,
 # Some tools Automake needs.
 AC_REQUIRE([AM_SANITY_CHECK])dnl
 AC_REQUIRE([AC_ARG_PROGRAM])dnl
-AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
+AM_MISSING_PROG(ACLOCAL, aclocal)
 AM_MISSING_PROG(AUTOCONF, autoconf)
-AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
+AM_MISSING_PROG(AUTOMAKE, automake)
 AM_MISSING_PROG(AUTOHEADER, autoheader)
 AM_MISSING_PROG(MAKEINFO, makeinfo)
 AM_MISSING_PROG(AMTAR, tar)



More information about the Gcc-patches mailing list