Fix reference to a directory

This commit is contained in:
Raoul Snyman 2019-05-20 15:17:13 -07:00
parent 7a30015296
commit c04282e102
1 changed files with 1 additions and 1 deletions

View File

@ -436,7 +436,7 @@ class WindowsBuilder(Builder):
Return a list of any extra parameters we wish to use Return a list of any extra parameters we wish to use
""" """
parameters = [] 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) arch=self.arch)
# Finds the UCRT DDLs available from the Windows 10 SDK # Finds the UCRT DDLs available from the Windows 10 SDK
for binary in glob.glob(dll_path): for binary in glob.glob(dll_path):