diff options
author | Fraser Hutchison <fraser.hutchison@maidsafe.net> | 2012-05-28 14:59:51 (GMT) |
---|---|---|
committer | Eric NOULARD <eric.noulard@gmail.com> | 2012-05-28 15:15:29 (GMT) |
commit | cfc11f9bff95c8332b31741056481d24e0db83f6 (patch) | |
tree | 6478ba57d140408caeeba216aee38978d19fc397 /Source/CPack/cmCPackNSISGenerator.cxx | |
parent | b639549c671c4921938935180f0690ed8910ce3d (diff) | |
download | CMake-cfc11f9bff95c8332b31741056481d24e0db83f6.zip CMake-cfc11f9bff95c8332b31741056481d24e0db83f6.tar.gz CMake-cfc11f9bff95c8332b31741056481d24e0db83f6.tar.bz2 |
CPack: Fixed incorrect error log for CPACK_NSIS_MENU_LINKS.
This was a pull request: https://github.com/Kitware/CMake/pull/5
Signed-off-by: Eric NOULARD <eric.noulard@gmail.com>
Diffstat (limited to 'Source/CPack/cmCPackNSISGenerator.cxx')
-rw-r--r-- | Source/CPack/cmCPackNSISGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx index 481fd2b..7b52511 100644 --- a/Source/CPack/cmCPackNSISGenerator.cxx +++ b/Source/CPack/cmCPackNSISGenerator.cxx @@ -543,8 +543,8 @@ void cmCPackNSISGenerator::CreateMenuLinks( cmOStringStream& str, { cmCPackLogger( cmCPackLog::LOG_ERROR, - "CPACK_PACKAGE_EXECUTABLES should contain pairs of <executable> and " - "<icon name>." << std::endl); + "CPACK_NSIS_MENU_LINKS should contain pairs of <shortcut target> and " + "<shortcut label>." << std::endl); return; } |