diff options
author | Arcturus Arcturus <arcturus98@outlook.com> | 2021-10-20 15:58:00 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-10-20 16:48:04 (GMT) |
commit | 1560265e7d3af90fbdd991dc8fe35d918e907d7b (patch) | |
tree | 5d44f0c92402c0cfa171bcaeb1e959cc13c10401 | |
parent | 2f7e72a341dba3554e44c93c69a3b8338a9e6976 (diff) | |
download | CMake-1560265e7d3af90fbdd991dc8fe35d918e907d7b.zip CMake-1560265e7d3af90fbdd991dc8fe35d918e907d7b.tar.gz CMake-1560265e7d3af90fbdd991dc8fe35d918e907d7b.tar.bz2 |
Help: Fix file(INSTALL) docs w.r.t. CMAKE_INSTALL_MESSAGE
In commit c9568de52c (install: Add CMAKE_INSTALL_MESSAGE variable
(#13761), 2014-06-24, v3.1.0-rc1~370^2~1) we incorrectly documented
that `CMAKE_INSTALL_MESSAGE` controls the status message for
`file(INSTALL)`. Revert that.
Fixes: #17162
-rw-r--r-- | Help/command/file.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/command/file.rst b/Help/command/file.rst index 5a3fd88..799b6ff 100644 --- a/Help/command/file.rst +++ b/Help/command/file.rst @@ -838,8 +838,8 @@ of their content even if options are used to select a subset of files. The ``INSTALL`` signature differs slightly from ``COPY``: it prints -status messages (subject to the :variable:`CMAKE_INSTALL_MESSAGE` variable), -and ``NO_SOURCE_PERMISSIONS`` is default. +status messages, and ``NO_SOURCE_PERMISSIONS`` is default. + Installation scripts generated by the :command:`install` command use this signature (with some undocumented options for internal use). |