Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
ids1024 committed Jan 23, 2024
1 parent f4c347b commit 7cf1c8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion windows/build.bat
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
C:\msys64\mingw32\bin\python build.py
set MSYSTEM_PREFIX=C:\msys64\mingw32
C:\msys64\mingw32\bin\python build.py
4 changes: 3 additions & 1 deletion windows/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@
# mingw32 version seems to no longer be packaged, and need to avoid unrelated
# System32/convert
# CONVERT = r"C:\msys64\mingw64\bin\convert"
CONVERT = os.path.dirname(os.environ['MSYSTEM_PREFIX']) + 'mingw64/bin/convert'
CONVERT = os.path.dirname(os.environ['MSYSTEM_PREFIX']) + r'\mingw64\bin\convert.exe'
print(os.listdir(os.path.dirname(os.environ['MSYSTEM_PREFIX'])))
print(CONVERT)
assert os.path.exists(CONVERT)

ADWAITA_FILES = [
Expand Down

0 comments on commit 7cf1c8e

Please sign in to comment.