diff options
author | Brad King <brad.king@kitware.com> | 2007-01-24 18:45:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-01-24 18:45:42 (GMT) |
commit | f71ad851d81649c59a8f4724d72ba4c935cdefce (patch) | |
tree | 0f99fc5c4ea9ecd94a2fa0b7ab222373b5ee4004 /Source/cmRemoveCommand.h | |
parent | 03a46e03810ea22c357033bd83508c47766592d6 (diff) | |
download | CMake-f71ad851d81649c59a8f4724d72ba4c935cdefce.zip CMake-f71ad851d81649c59a8f4724d72ba4c935cdefce.tar.gz CMake-f71ad851d81649c59a8f4724d72ba4c935cdefce.tar.bz2 |
ENH: Patch from Alex to make deprecated command documentation more consistent.
Diffstat (limited to 'Source/cmRemoveCommand.h')
-rw-r--r-- | Source/cmRemoveCommand.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/cmRemoveCommand.h b/Source/cmRemoveCommand.h index 7062770..04bf314 100644 --- a/Source/cmRemoveCommand.h +++ b/Source/cmRemoveCommand.h @@ -56,7 +56,7 @@ public: */ virtual const char* GetTerseDocumentation() { - return "Old list item removal command. Use the LIST command."; + return "Deprecated. Use the LIST(REMOVE_ITEM ) command instead."; } /** @@ -65,8 +65,6 @@ public: virtual const char* GetFullDocumentation() { return - "This command has been superceded by the LIST(REMOVE ...) command. " - "It is provided for compatibility with older CMake code.\n" " REMOVE(VAR VALUE VALUE ...)\n" "Removes VALUE from the variable VAR. " "This is typically used to remove entries from a vector " |