diff options
author | Thanos Doukoudakis <thanos.doukoudakis@isode.com> | 2018-01-29 16:50:32 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2018-01-30 09:25:19 (GMT) |
commit | e2048d327800f93d6d5b647a7b0c2ff2abc5e93b (patch) | |
tree | 3a860c6ba9236c393d93d64f80936878b3d2ea98 /Swift/QtUI/SConscript | |
parent | b964f682dccc0bc62cb88794edc53815133762f2 (diff) | |
download | swift-e2048d327800f93d6d5b647a7b0c2ff2abc5e93b.zip swift-e2048d327800f93d6d5b647a7b0c2ff2abc5e93b.tar.bz2 |
Change the program name of the windows installer
During the UAC dialog in windows, the program name appears to have a
random value. This patch will make it use "Swift Installer" instead.
Test-Information:
Tested the changes during installation and uninstallation on Windows 7 (64
bit) and Windows 10 (64 bit)
Change-Id: I001ed9e644b123f62b9168115ce06803d2b4bd20
Diffstat (limited to 'Swift/QtUI/SConscript')
-rw-r--r-- | Swift/QtUI/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swift/QtUI/SConscript b/Swift/QtUI/SConscript index 112a66e..54f0450 100644 --- a/Swift/QtUI/SConscript +++ b/Swift/QtUI/SConscript @@ -497,7 +497,7 @@ if env["PLATFORM"] == "win32" : signresult = 0 for x in range (1, 4) : print "Attemping to sign the packages [%s]" % x - signresult = env.Execute('signtool.exe sign /fd SHA256 /f "${SIGNTOOL_KEY_PFX}" /t "${SIGNTOOL_TIMESTAMP_URL}" ' + str(target[0])) + signresult = env.Execute('signtool.exe sign /fd SHA256 /f "${SIGNTOOL_KEY_PFX}" /t "${SIGNTOOL_TIMESTAMP_URL}" /d "Swift Installer" ' + str(target[0])) if signresult != 1 : break #If all 3 attemps to sign the package failed, stop the build. |