diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2007-12-14 19:58:27 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2007-12-14 19:58:27 (GMT) |
commit | ad75cb7195dd87d462aa7b737bfdb2e1dfd1efc8 (patch) | |
tree | 65112071352868d05c1736d61d11cb8fe419881d /Source | |
parent | a488c2646caadb315b5fbab69b6f49246ba5d5a2 (diff) | |
download | CMake-ad75cb7195dd87d462aa7b737bfdb2e1dfd1efc8.zip CMake-ad75cb7195dd87d462aa7b737bfdb2e1dfd1efc8.tar.gz CMake-ad75cb7195dd87d462aa7b737bfdb2e1dfd1efc8.tar.bz2 |
BUG: fix for 6086 uninstall icon not set right
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CPack/cmCPackNSISGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CPack/cmCPackNSISGenerator.cxx b/Source/CPack/cmCPackNSISGenerator.cxx index 2e794f0..556ab80 100644 --- a/Source/CPack/cmCPackNSISGenerator.cxx +++ b/Source/CPack/cmCPackNSISGenerator.cxx @@ -115,7 +115,7 @@ int cmCPackNSISGenerator::CompressFiles(const char* outFileName, installerIconCode += this->GetOption("CPACK_NSIS_MUI_ICON"); installerIconCode += "\"\n"; installerIconCode += "!define MUI_UNICON \""; - installerIconCode += this->GetOption("CPACK_NSIS_MUI_ICON"); + installerIconCode += this->GetOption("CPACK_NSIS_MUI_UNIICON"); installerIconCode += "\"\n"; this->SetOptionIfNotSet("CPACK_NSIS_INSTALLER_MUI_ICON_CODE", installerIconCode.c_str()); |