Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürgen Weigert <jnweiger@gmail.com>2017-10-26 19:44:38 +0300
committerGitHub <noreply@github.com>2017-10-26 19:44:38 +0300
commit17126de5c703e935d2de9285a880211f0a120e35 (patch)
tree5d7bf2753ce12cee45679fb1b45af3b5076a7182 /cmake/modules/NSIS.template.in
parentd9f646831035b786c14a78688503610364b17b99 (diff)
APPLICATION_NAME may contain whitespace
Need some quotes to survive in makensis.
Diffstat (limited to 'cmake/modules/NSIS.template.in')
-rw-r--r--cmake/modules/NSIS.template.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/modules/NSIS.template.in b/cmake/modules/NSIS.template.in
index 7c32b729f..9b52bf338 100644
--- a/cmake/modules/NSIS.template.in
+++ b/cmake/modules/NSIS.template.in
@@ -616,7 +616,7 @@ Section Uninstall
StrCmp $1 "" done
ReadRegStr $R0 HKCU "Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\$1" "ApplicationName"
- StrCmp $R0 ${APPLICATION_NAME} deleteClsid
+ StrCmp $R0 "${APPLICATION_NAME}" deleteClsid
; Increment the index when not deleting the enumerated key.
IntOp $0 $0 + 1
goto loop