mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
cmSystemTools: Rename OUTPUT_NORMAL to OUTPUT_FORWARD to clarify its purpose
The OUTPUT_NORMAL value is not really "normal" and has only one caller. Rename it to OUTPUT_FORWARD to clarify that we are explicitly forwarding the output.
This commit is contained in:
@@ -203,7 +203,7 @@ public:
|
||||
* Output is controlled with outputflag. If outputflag is OUTPUT_NONE, no
|
||||
* user-viewable output from the program being run will be generated.
|
||||
* OUTPUT_MERGE is the legacy behaviour where stdout and stderr are merged
|
||||
* into stdout. OUTPUT_NORMAL passes through the output to stdout/stderr as
|
||||
* into stdout. OUTPUT_FORWARD copies the output to stdout/stderr as
|
||||
* it was received. OUTPUT_PASSTHROUGH passes through the original handles.
|
||||
*
|
||||
* If timeout is specified, the command will be terminated after
|
||||
@@ -223,7 +223,7 @@ public:
|
||||
{
|
||||
OUTPUT_NONE = 0,
|
||||
OUTPUT_MERGE,
|
||||
OUTPUT_NORMAL,
|
||||
OUTPUT_FORWARD,
|
||||
OUTPUT_PASSTHROUGH
|
||||
};
|
||||
static bool RunSingleCommand(const char* command,
|
||||
|
||||
Reference in New Issue
Block a user