diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-16 20:55:16 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-02-16 20:55:16 (GMT) |
commit | 3cd5fd4e7bb3f2bf6069238a34ad2a4c36a64ba4 (patch) | |
tree | f229ac53af1aa762da966f3e878b34dcb9d7a573 /Source | |
parent | 213ea40c6fa38704ded94a91123cfbaa03c9e149 (diff) | |
download | CMake-3cd5fd4e7bb3f2bf6069238a34ad2a4c36a64ba4.zip CMake-3cd5fd4e7bb3f2bf6069238a34ad2a4c36a64ba4.tar.gz CMake-3cd5fd4e7bb3f2bf6069238a34ad2a4c36a64ba4.tar.bz2 |
BUG: Remove debug and fix space between label and exec name
Diffstat (limited to 'Source')
-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 9f1e9e2..31b48c2 100644 --- a/Source/CPack/cmCPackNSISGenerator.cxx +++ b/Source/CPack/cmCPackNSISGenerator.cxx @@ -134,7 +134,7 @@ int cmCPackNSISGenerator::Initialize(const char* name, cmMakefile* mf) const char* cpackPackageExecutables = this->GetOption("CPACK_PACKAGE_EXECUTABLES"); if ( cpackPackageExecutables ) { - cmCPackLogger(cmCPackLog::LOG_ERROR, "The cpackPackageExecutables: " << cpackPackageExecutables << "." << std::endl); + cmCPackLogger(cmCPackLog::LOG_DEBUG, "The cpackPackageExecutables: " << cpackPackageExecutables << "." << std::endl); cmOStringStream str; cmOStringStream deleteStr; std::vector<std::string> cpackPackageExecutablesVector; @@ -151,7 +151,7 @@ int cmCPackNSISGenerator::Initialize(const char* name, cmMakefile* mf) std::string execName = *it; ++ it; std::string linkName = *it; - str << " CreateShortCut \"$SMPROGRAMS\\$STARTMENU_FOLDER\\" << linkName << ".lnk\"" "\"$INSTDIR\\bin\\" << execName << ".exe\"" << std::endl; + str << " CreateShortCut \"$SMPROGRAMS\\$STARTMENU_FOLDER\\" << linkName << ".lnk\" \"$INSTDIR\\bin\\" << execName << ".exe\"" << std::endl; deleteStr << " Delete \"$SMPROGRAMS\\$MUI_TEMP\\" << linkName << ".lnk\"" << std::endl; } this->SetOption("CPACK_NSIS_CREATE_ICONS", str.str().c_str()); |