Skip to content

Commit c493bbd

Browse files
committed
Add Windows 7 SP1 compatibility fix: include api-ms-win-core-path-l1-1-0.dll in distribution
1 parent 0914f75 commit c493bbd

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed
102 KB
Binary file not shown.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
api-ms-win-core-path-l1-1-0.dll
2+
===============================
3+
4+
This is a Windows Core API library that provides functions for working with file paths.
5+
The provided DLL was built using Wine's implementation of the Windows API.
6+
See https://github.com/nalexandru/api-ms-win-core-path-HACK for more information.
7+
8+
Information about the build:
9+
10+
- Version of the DLL: 0.3.1
11+
- Date of the build: 2021-03-07
12+
- Release page: https://github.com/nalexandru/api-ms-win-core-path-HACK/releases/tag/0.3.1

scripts/build_distribution.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ for /d %%d in (patches\*) do (
5555
)
5656
)
5757

58+
@REM Windows 7 SP1 compatibility fix
59+
copy resources\api-ms-win-core-path-l1-1-0.dll "dist\%CI_DST%\python\"
60+
5861
@REM Remove all '__pycache__' folders
5962
@REM for /d /r "%ROOTPATH%\dist\%CI_DST%" %%d in (__pycache__) do (
6063
@REM rd /s /q "%%d"

0 commit comments

Comments
 (0)