Przeglądaj źródła

Fix building standalone windows exe.

Antti Aalto 7 lat temu
rodzic
commit
248eb605b6
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      deployment/windows/buildwin32.py

+ 1 - 1
deployment/windows/buildwin32.py

@@ -76,7 +76,7 @@ finder.run_script('src/borg/__main__.py')
 
 
 # For some reason modulefinder does not find these, add them manually
 # For some reason modulefinder does not find these, add them manually
 extramodules = [os.path.join(modulepath, 'site.py'), os.path.join(modulepath, 'encodings/idna.py'),
 extramodules = [os.path.join(modulepath, 'site.py'), os.path.join(modulepath, 'encodings/idna.py'),
-    os.path.join(modulepath, 'stringprep.py')]
+    os.path.join(modulepath, 'stringprep.py'), os.path.join(modulepath, 'ctypes/wintypes.py')]
 
 
 for module in extramodules:
 for module in extramodules:
     finder.run_script(module)
     finder.run_script(module)