diff options
author | Alexander Neundorf <neundorf@kde.org> | 2008-01-17 22:49:30 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2008-01-17 22:49:30 (GMT) |
commit | 9e8a1c639a92a1c2e37f0beefb62204930e7e61e (patch) | |
tree | a5e90681df3028cca81042fbcd197bae9a886a3c /Source/cmFindBase.cxx | |
parent | eccee212e1bf8dd29ff1111c3e67de4b8c215245 (diff) | |
download | CMake-9e8a1c639a92a1c2e37f0beefb62204930e7e61e.zip CMake-9e8a1c639a92a1c2e37f0beefb62204930e7e61e.tar.gz CMake-9e8a1c639a92a1c2e37f0beefb62204930e7e61e.tar.bz2 |
STYLE: PATHS is optional (#6253)
Alex
Diffstat (limited to 'Source/cmFindBase.cxx')
-rw-r--r-- | Source/cmFindBase.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmFindBase.cxx b/Source/cmFindBase.cxx index 3803c2e..14987ac 100644 --- a/Source/cmFindBase.cxx +++ b/Source/cmFindBase.cxx @@ -23,14 +23,14 @@ cmFindBase::cmFindBase() this->AlreadyInCache = false; this->AlreadyInCacheWithoutMetaInfo = false; this->GenericDocumentation = - " FIND_XXX(<VAR> name1 path1 path2 ...)\n" + " FIND_XXX(<VAR> name1 [path1 path2 ...])\n" "This is the short-hand signature for the command that " "is sufficient in many cases. It is the same " - "as FIND_XXX(<VAR> name1 PATHS path1 path2 ...)\n" + "as FIND_XXX(<VAR> name1 [PATHS path1 path2 ...])\n" " FIND_XXX(\n" " <VAR>\n" " name | NAMES name1 [name2 ...]\n" - " PATHS path1 [path2 ... ENV var]\n" + " [PATHS path1 [path2 ... ENV var]]\n" " [PATH_SUFFIXES suffix1 [suffix2 ...]]\n" " [DOC \"cache documentation string\"]\n" " [NO_DEFAULT_PATH]\n" |