From 6a93ee31278e8dc3cd2705f652afe49815855096 Mon Sep 17 00:00:00 2001 From: Michael Curran Date: Thu, 15 Feb 2018 20:11:36 +1000 Subject: [PATCH] Include the Desktop UWP redistributables in NVDA for Onecore features, rather than the Onecore redistributables. This should fix issues on windows 7. --- nvdaHelper/localWin10/sconscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nvdaHelper/localWin10/sconscript b/nvdaHelper/localWin10/sconscript index b4e6194676e..d2a1211c48f 100644 --- a/nvdaHelper/localWin10/sconscript +++ b/nvdaHelper/localWin10/sconscript @@ -44,7 +44,7 @@ localWin10Lib = env.SharedLibrary( # Therefore, we must include it. # VS 2017 keeps changing the path to reflect the latest major.minor.build version which we canot easily find out. # Therefore Search these versioned directories from newest to oldest to collect all the files we need. -vcRedistDirs = glob.glob(os.path.join(progFilesX86, r"Microsoft Visual Studio\2017\Community\VC\Redist\MSVC\14.1*\onecore\x86\Microsoft.VC141.CRT")) +vcRedistDirs = glob.glob(os.path.join(progFilesX86, r"Microsoft Visual Studio\2017\Community\VC\Redist\MSVC\14.1*\x86\Microsoft.VC141.CRT")) if len(vcRedistDirs)==0: raise RuntimeError("Could not locate vc redistributables. Perhaps the Universal Windows Platform component in visual Studio is not installed") vcRedistDirs.sort(reverse=True)