On Monday 19 November 2007 18:37:02 Josef Karthauser wrote:
> Is it possible (with relative easy) to have cmake send all output to
> stderr instead of stdout?

Well on a bourne shell I think you can do:

cmake /path/to/sources 1>&2

And it will run cmake redirecting fd 1 (stdout) to fd 2 (stderr). If you need 
to further direct the output make sure you write that before "1>&2" part as 
in:

cmake /path/to/sources 2> logfile.txt 1>&2

-- 
Mihai RUSU                                      Email: [EMAIL PROTECTED]
                        "Linux is obsolete" -- AST
_______________________________________________
CMake mailing list
CMake@cmake.org
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to