From 25ee2c86c1d231ee0f930e6cfe1bb5be5e4ee539 Mon Sep 17 00:00:00 2001 From: Bartosz Kosiorek Date: Mon, 2 May 2016 12:27:57 +0200 Subject: Help: Add missing space in cmake(1) manual --- Help/manual/cmake.1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst index 5295a48c..0b060bc 100644 --- a/Help/manual/cmake.1.rst +++ b/Help/manual/cmake.1.rst @@ -169,7 +169,7 @@ Available commands are: ``compare_files `` Check if ```` is same as ````. If files are the same, - then returns 0, if not itreturns 1. + then returns 0, if not it returns 1. ``copy ... `` Copy files to ```` (either file or directory). -- cgit v0.12 From 960afaad7f1bc02b93a786fad6169ce970b5d5e7 Mon Sep 17 00:00:00 2001 From: Bartosz Kosiorek Date: Mon, 2 May 2016 12:27:57 +0200 Subject: Help: Improve 'cmake -E md5sum' documentation --- Help/manual/cmake.1.rst | 5 ++++- Source/cmcmd.cxx | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst index 0b060bc..3ae2baf 100644 --- a/Help/manual/cmake.1.rst +++ b/Help/manual/cmake.1.rst @@ -204,7 +204,10 @@ Available commands are: silently ignored. ``md5sum ...`` - Compute md5sum of files. + Create MD5 checksum of files in ``md5sum`` compatible format:: + + 351abe79cd3800b38cdfb25d45015a15 file1.txt + 052f86c15bbde68af55c7f7b340ab639 file2.txt ``remove [-f] ...`` Remove the file(s), use ``-f`` to force it. If a file does diff --git a/Source/cmcmd.cxx b/Source/cmcmd.cxx index 22c6a06..01b12a3 100644 --- a/Source/cmcmd.cxx +++ b/Source/cmcmd.cxx @@ -70,7 +70,7 @@ void CMakeCommandUsage(const char* program) << " - run command in a modified environment\n" << " environment - display the current environment\n" << " make_directory ... - create parent and directories\n" - << " md5sum ... - compute md5sum of files\n" + << " md5sum ... - create MD5 checksum of files\n" << " remove [-f] ... - remove the file(s), use -f to force " "it\n" << " remove_directory dir - remove a directory and its contents\n" -- cgit v0.12