From: markt Date: Mon, 1 Aug 2011 17:03:56 +0000 (+0000) Subject: Correctly handle uninstall with the Windows installer of the service is installed... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=5d5d38ddc21ef1347902a259c8112c7768570bcf;p=tomcat7.0 Correctly handle uninstall with the Windows installer of the service is installed with a name that contains a '-' character. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1152863 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/res/tomcat.nsi b/res/tomcat.nsi index 02bd14d57..4b0e3c6dc 100644 --- a/res/tomcat.nsi +++ b/res/tomcat.nsi @@ -1049,7 +1049,7 @@ Function createShortcuts ${EndIf} CreateShortCut "$SMPROGRAMS\Apache Tomcat @VERSION_MAJOR_MINOR@ $TomcatServiceName\Uninstall Tomcat @VERSION_MAJOR_MINOR@.lnk" \ - "$INSTDIR\Uninstall.exe" "-ServiceName=$TomcatServiceName" + "$INSTDIR\Uninstall.exe" '-ServiceName="$TomcatServiceName"' CreateShortCut "$SMPROGRAMS\Apache Tomcat @VERSION_MAJOR_MINOR@ $TomcatServiceName\Tomcat @VERSION_MAJOR_MINOR@ Program Directory.lnk" \ "$INSTDIR" diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml index 582f2e69a..143cd95a5 100644 --- a/webapps/docs/changelog.xml +++ b/webapps/docs/changelog.xml @@ -240,6 +240,10 @@ Simplify mapping for jsp servlet in the default web.xml. (kkolinko) + + Correctly handle uninstall with the Windows installer of the service is + installed with a name that contains a '-' character. (markt) +