diff options
author | Brad King <brad.king@kitware.com> | 2015-04-13 16:57:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-04-13 17:00:58 (GMT) |
commit | fef1f26749a7dc3839b1e461fb09eecbe97cca90 (patch) | |
tree | 64d9c198fc7c5b2968a7bc32ac02ca585ab87e20 | |
parent | 62c5e6f1a19df0043a0e9aaba6cf7247f76a5cc3 (diff) | |
download | CMake-fef1f26749a7dc3839b1e461fb09eecbe97cca90.zip CMake-fef1f26749a7dc3839b1e461fb09eecbe97cca90.tar.gz CMake-fef1f26749a7dc3839b1e461fb09eecbe97cca90.tar.bz2 |
Help: Fix {GIT,P4}UpdateCustom documentation (#15512)
The GITUpdateCustom and P4UpdateCustom options take only one command
line with all arguments as a ;-list, not a ;-list of multiple command
lines. Fix the incorrect documentation originally added by commit
v3.1.0-rc1~463^2 (Help: Document ctest dashboard client usage,
2014-05-30).
-rw-r--r-- | Help/manual/ctest.1.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/manual/ctest.1.rst b/Help/manual/ctest.1.rst index dd3bcfb..584786f 100644 --- a/Help/manual/ctest.1.rst +++ b/Help/manual/ctest.1.rst @@ -573,7 +573,7 @@ Configuration settings to specify the version control tool include: * :module:`CTest` module variable: ``GITCOMMAND`` ``GITUpdateCustom`` - Specify a semicolon-separated list of custom command lines to run + Specify a custom command line (as a semicolon-separated list) to run in the source tree (Git work tree) to update it instead of running the ``GITCommand``. @@ -617,7 +617,7 @@ Configuration settings to specify the version control tool include: * :module:`CTest` module variable: ``CTEST_P4_OPTIONS`` ``P4UpdateCustom`` - Specify a semicolon-separated list of custom command lines to run + Specify a custom command line (as a semicolon-separated list) to run in the source tree (Perforce tree) to update it instead of running the ``P4Command``. |