How do I detect a failure in Make?

2006-04-26 Thread Richard Quadling
Hi. I have the following bash script ... #!/bin/sh cvs up 2> $HOME/cvs1.log > $HOME/cvs2.log cd phpdoc autoconf -v -d --warnings=all &> $HOME/autoconf.log ./configure --with-source=./../php-src --with-pear-source=./../pear --with-chm=yes --with-treesaving > $HOME/configure.log make test > $HOME/m

Re: How do I detect a failure in Make?

2006-04-26 Thread mwoehlke
Richard Quadling wrote: I have the following bash script ... #!/bin/sh cvs up 2> $HOME/cvs1.log > $HOME/cvs2.log cd phpdoc autoconf -v -d --warnings=all &> $HOME/autoconf.log ./configure --with-source=./../php-src --with-pear-source=./../pear --with-chm=yes --with-treesaving > $HOME/configure.lo

Re: How do I detect a failure in Make?

2006-04-28 Thread Richard Quadling
On 26/04/06, mwoehlke <[EMAIL PROTECTED]> wrote: > Richard Quadling wrote: > > I have the following bash script ... > > > > #!/bin/sh > > cvs up 2> $HOME/cvs1.log > $HOME/cvs2.log > > cd phpdoc > > autoconf -v -d --warnings=all &> $HOME/autoconf.log > > ./configure --with-source=./../php-src --with

Re: How do I detect a failure in Make?

2006-04-28 Thread mwoehlke
Richard Quadling wrote: On 26/04/06, mwoehlke <[EMAIL PROTECTED]> wrote: Richard Quadling wrote: I have the following bash script ... #!/bin/sh cvs up 2> $HOME/cvs1.log > $HOME/cvs2.log cd phpdoc autoconf -v -d --warnings=all &> $HOME/autoconf.log ./configure --with-source=./../php-src --with-

Re: How do I detect a failure in Make?

2006-04-28 Thread Doyle Rhynard
Richard Quadling wrote: On 26/04/06, mwoehlke <[EMAIL PROTECTED]> wrote: Richard Quadling wrote: I have the following bash script ... #!/bin/sh cvs up 2> $HOME/cvs1.log > $HOME/cvs2.log cd phpdoc autoconf -v -d --warnings=all &> $HOME/autoconf.log ./configure --with-source=./../php-src --with-

Re: How do I detect a failure in Make?

2006-04-29 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Doyle Rhynard on 4/28/2006 3:51 PM: > > Use "remake" the make debugger > It will allow you to step through the makefile and stop when an error is > found. You know, remake is built by the same guy

Re: How do I detect a failure in Make?

2006-04-29 Thread Christopher Faylor
On Sat, Apr 29, 2006 at 04:42:08PM -0600, Eric Blake wrote: >According to Doyle Rhynard on 4/28/2006 3:51 PM: >> Use "remake" the make debugger >> It will allow you to step through the makefile and stop when an error is >> found. > >You know, remake is built