diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-10-31 13:03:40 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-10-31 13:03:40 (GMT) |
commit | 771997c55629d95ac6af7d6c5aecf53521e88b00 (patch) | |
tree | b2adbb8c969335f62188d0e1c4dddd0da5bb4499 /Source/CPack | |
parent | 5beb1da7f741c50659204cf1fbd264b5dcb7dd02 (diff) | |
download | CMake-771997c55629d95ac6af7d6c5aecf53521e88b00.zip CMake-771997c55629d95ac6af7d6c5aecf53521e88b00.tar.gz CMake-771997c55629d95ac6af7d6c5aecf53521e88b00.tar.bz2 |
ENH: fix line length
Diffstat (limited to 'Source/CPack')
-rw-r--r-- | Source/CPack/cmCPackNSISGenerator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx index 3a0fd96..8fa1152 100644 --- a/Source/CPack/cmCPackNSISGenerator.cxx +++ b/Source/CPack/cmCPackNSISGenerator.cxx @@ -338,7 +338,8 @@ void cmCPackNSISGenerator::CreateMenuLinks( cmOStringStream& str, else { str << " WriteINIStr \"$SMPROGRAMS\\$STARTMENU_FOLDER\\" - << linkName << ".url\" \"InternetShortcut\" \"URL\" \"" << sourceName << "\"" + << linkName << ".url\" \"InternetShortcut\" \"URL\" \"" + << sourceName << "\"" << std::endl; deleteStr << " Delete \"$SMPROGRAMS\\$MUI_TEMP\\" << linkName << ".url\"" << std::endl; |