summaryrefslogtreecommitdiffstats
path: root/Help/command/execute_process.rst
diff options
context:
space:
mode:
authorJoachim Wuttke (l) <j.wuttke@fz-juelich.de>2019-03-20 17:25:52 (GMT)
committerJoachim Wuttke (l) <j.wuttke@fz-juelich.de>2019-03-20 17:25:52 (GMT)
commit0295b153f4ee0506f1b23f5b941cfd28ee7201db (patch)
tree17ad4c5fcd08e2d0f1974f899aaa7f11f7b56081 /Help/command/execute_process.rst
parent33efdfc0b541d8ccb9d4a5b06598c2964a7285ba (diff)
downloadCMake-0295b153f4ee0506f1b23f5b941cfd28ee7201db.zip
CMake-0295b153f4ee0506f1b23f5b941cfd28ee7201db.tar.gz
CMake-0295b153f4ee0506f1b23f5b941cfd28ee7201db.tar.bz2
Help: describe the command pipeline of execute_process more explicitly
When reading the doc page on execute_process, I was mislead by the words "in parallel". They convinced at once that the processes are run independently of each other, so that I did not even bother to read further. The rewording, and not least the insertion of a paragraph break, should prevent such oversight.
Diffstat (limited to 'Help/command/execute_process.rst')
-rw-r--r--Help/command/execute_process.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/Help/command/execute_process.rst b/Help/command/execute_process.rst
index 9209f95..2d71352 100644
--- a/Help/command/execute_process.rst
+++ b/Help/command/execute_process.rst
@@ -22,7 +22,9 @@ Execute one or more child processes.
[ERROR_STRIP_TRAILING_WHITESPACE]
[ENCODING <name>])
-Runs the given sequence of one or more commands in parallel with the standard
+Runs the given sequence of one or more commands.
+
+Commands are executed concurrently as a pipeline, with the standard
output of each process piped to the standard input of the next.
A single standard error pipe is used for all processes.