On 4/24/07, Ken Moffat <[EMAIL PROTECTED]> wrote:
> On Tue, Apr 24, 2007 at 08:45:40AM -0700, Gopa Kumar wrote:
> > Hi,
> >  I have reached section 5.11. That is, Reinstallation
> > of gcc. Everything worked fine so far. However, the
> > configure command generates the following errors (as
> > obtained in config.log). I tried it many times in
> > vain.
> > Pl, help me to come out of this.
> > With Regards,
> > Gopa Kumar
>
>  Hi Gopa, can you tell us what error(s) you got that made you decide
> to look at config.log, please ?  Normally, config.log is only useful
> after a failure to configure or make, and nothing here looks wrong.

As Ken says, there are many things in configure that will fail. This
is done by design as the script tries to figure out the right way to
work with your system. The only thing that matters is if the whole
script returned with an error. You can check the return status of the
previous through the variable $?.

$ ./configure ...
...
$ echo $?
0

If the value isn't 0, then an error has occurred.

--
Dan
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page

Reply via email to