FYI, make may not have this problem but I've been bitten by STDOUT and STDERR when trying to capture output where all the normal output was captured but the errors were not. To get around that redirect stderr into stdout:
make VERBOSE=1 2>&1 > build.log or if you want to watch it: make VERBOSE=1 2>&1 | tee build.log Richard
_______________________________________________ Oiio-dev mailing list [email protected] http://lists.openimageio.org/listinfo.cgi/oiio-dev-openimageio.org
