This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: failed compile
- To: Jean-Pierre Radley <jpr at jpr dot com>, EGCS Developers <egcs at cygnus dot com>
- Subject: Re: failed compile
- From: Robert Lipe <robertl at dgii dot com>
- Date: Fri, 20 Mar 1998 13:21:30 -0600
- References: <19980319111935.15836@jpr.com>
Jean-Pierre Radley wrote:
> After a 'cvs update' today, compilation halts at this point:
>
> Configuring in libraries/libf2c
> loading cache ./config.cache
> /s/tools/egcs/libf2c/configure: syntax error at line 537: `<<' unexpected
> make: *** [configure-target-libf2c] Error 2
If you do a 'cvs status libf2c/configure', is the leading character a 'C'?
If so, this indicates you had a conflict during the update. Since
configure is a generated file, manually resolving conflicts in it is
pointless.
If you have autoconf and related tools:
cd libf2c; rm configure ; autoconf
else
rm libf2c/configure ; cvs update libf2c/configure
RJL