[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [hobbit] hobbit-clients.cfg



On Fri, 2007-06-01 at 11:09 -0400, Manocchia, Robert wrote:
> I cannot find the HOBBITSERVERS variable anywhere on the client.
> 

A general technique (not Hobbit-specific) that can help you trace things
down later can be used when building an app:

./configure 2>&1 | tee configure.out
make 2>&1 | tee make.out
make test 2>&1 | tee make-test.out
make install 2>&1 | tee make-install.out

Those *.out files often times yield many clues...