[Cmake-commits] CMake branch, next, updated. v3.5.0-rc3-227-gdeb9258
Brad King
brad.king at kitware.com
Fri Feb 19 13:05:50 EST 2016
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".
The branch, next has been updated
via deb9258d2c999a94aa7dee0b61a0c126eb3481f9 (commit)
via b347503028a639103f27fcd2752b133993bb30ec (commit)
from 058bcf328e39cde948329e1ff46d3d77272516aa (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=deb9258d2c999a94aa7dee0b61a0c126eb3481f9
commit deb9258d2c999a94aa7dee0b61a0c126eb3481f9
Merge: 058bcf3 b347503
Author: Brad King <brad.king at kitware.com>
AuthorDate: Fri Feb 19 13:05:49 2016 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Feb 19 13:05:49 2016 -0500
Merge topic 'doc-cmake-E-details' into next
b3475030 Help: Clarify `cmake -E` command behavior with respect to file existence
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b347503028a639103f27fcd2752b133993bb30ec
commit b347503028a639103f27fcd2752b133993bb30ec
Author: Bartosz Kosiorek <gang65 at poczta.onet.pl>
AuthorDate: Fri Feb 19 17:48:20 2016 +0100
Commit: Brad King <brad.king at kitware.com>
CommitDate: Fri Feb 19 13:03:09 2016 -0500
Help: Clarify `cmake -E` command behavior with respect to file existence
diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst
index 91af3e3..92f5230 100644
--- a/Help/manual/cmake.1.rst
+++ b/Help/manual/cmake.1.rst
@@ -199,16 +199,19 @@ Available commands are:
``make_directory <dir>...``
Create ``<dir>`` directories. If necessary, create parent
- directories too.
+ directories too. If a directory already exists it will be
+ silently ignored.
``md5sum <file>...``
Compute md5sum of files.
``remove [-f] <file>...``
- Remove the file(s), use ``-f`` to force it.
+ Remove the file(s), use ``-f`` to force it. If a file does
+ not exist it will be silently ignored.
``remove_directory <dir>``
- Remove a directory and its contents.
+ Remove a directory and its contents. If a directory does
+ not exist it will be silently ignored.
``rename <oldname> <newname>``
Rename a file or directory (on one volume).
@@ -241,7 +244,8 @@ Available commands are:
Touch a file.
``touch_nocreate <file>``
- Touch a file if it exists but do not create it.
+ Touch a file if it exists but do not create it. If a file does
+ not exist it will be silently ignored.
UNIX-specific Command-Line Tools
--------------------------------
-----------------------------------------------------------------------
Summary of changes:
Help/manual/cmake.1.rst | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list