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

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2017-01-27 02:02:43 +0300
committerMikkel Krautz <mikkel@krautz.dk>2017-01-27 02:02:43 +0300
commitea1c1b3a29780eab0bd66166a66fea1b19896252 (patch)
tree0f53891b0c72846024d49d47077388234044e10d /installer
parentc3ebc173b530ef7e0ed7474f494cad9de7b6fee7 (diff)
installer: use "vcruntime140.dll" instead of "msvcr140.dll" for vcruntime140.dll's component ID.
I accidently neglected to rename this one instance to the new name in MSVC2015. (The "msvcr" file is now "vcruntime".) The rest of the references should be OK.
Diffstat (limited to 'installer')
-rw-r--r--installer/Files.wxs2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/Files.wxs b/installer/Files.wxs
index ef53c1a4c..52a7c5c35 100644
--- a/installer/Files.wxs
+++ b/installer/Files.wxs
@@ -70,7 +70,7 @@
<Component Id="msvcp140.dll">
<File Source="$(var.RedistDirVC14)\msvcp140.dll" KeyPath="yes" />
</Component>
- <Component Id="msvcr140.dll">
+ <Component Id="vcruntime140.dll">
<File Source="$(var.RedistDirVC14)\vcruntime140.dll" KeyPath="yes" />
</Component>
<?endif ?>