From c04282e10298fce910959d897c3367ccf99c9c4e Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Mon, 20 May 2019 15:17:13 -0700 Subject: [PATCH] Fix reference to a directory --- builders/windows-builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders/windows-builder.py b/builders/windows-builder.py index d9614d6..0287856 100644 --- a/builders/windows-builder.py +++ b/builders/windows-builder.py @@ -436,7 +436,7 @@ class WindowsBuilder(Builder): Return a list of any extra parameters we wish to use """ parameters = [] - dll_path = '{pf}\\Windows Kits\\10\\Redist\\ucrt\\DLLs\\{arch}\\*.dll'.format(pf=self.program_files, + dll_path = '{pf}\\Windows Kits\\10\\Redist\\ucrt\\DLLs\\{arch}\\*.dll'.format(pf=self.program_files_x86, arch=self.arch) # Finds the UCRT DDLs available from the Windows 10 SDK for binary in glob.glob(dll_path):