[cmake-commits] hoffman committed cmCPackNSISGenerator.cxx 1.29 1.30

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Dec 14 14:58:30 EST 2007


Update of /cvsroot/CMake/CMake/Source/CPack
In directory public:/mounts/ram/cvs-serv31159/Source/CPack

Modified Files:
	cmCPackNSISGenerator.cxx 
Log Message:
BUG: fix for 6086 uninstall icon not set right


Index: cmCPackNSISGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/CPack/cmCPackNSISGenerator.cxx,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- cmCPackNSISGenerator.cxx	7 Nov 2007 18:11:58 -0000	1.29
+++ cmCPackNSISGenerator.cxx	14 Dec 2007 19:58:27 -0000	1.30
@@ -115,7 +115,7 @@
     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());



More information about the Cmake-commits mailing list