summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2007-10-31 13:03:40 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2007-10-31 13:03:40 (GMT)
commit771997c55629d95ac6af7d6c5aecf53521e88b00 (patch)
treeb2adbb8c969335f62188d0e1c4dddd0da5bb4499 /Source
parent5beb1da7f741c50659204cf1fbd264b5dcb7dd02 (diff)
downloadCMake-771997c55629d95ac6af7d6c5aecf53521e88b00.zip
CMake-771997c55629d95ac6af7d6c5aecf53521e88b00.tar.gz
CMake-771997c55629d95ac6af7d6c5aecf53521e88b00.tar.bz2
ENH: fix line length
Diffstat (limited to 'Source')
-rw-r--r--Source/CPack/cmCPackNSISGenerator.cxx3
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;