Amanda waite wrote:
> wrap the ./configure or ./autogen.sh command with backticks and echo 
> it, like:
>
> echo `./configure`
>
> That basically catches the non-zero exit status, you can then cat the 
> config.log file. The sourcejuicer output doesn't wrap though so you'll 
> lose the ends of long lines.
or you can do something like:
 ./configure ... || (cat config.log; false)

the wrapping issue is easily solved by viewing source page in your 
webbrowser.


Reply via email to