summaryrefslogtreecommitdiffstats
path: root/buildtools
diff options
context:
space:
mode:
authorPatrick Storz <eduard.braun2@gmx.de>2019-10-25 17:19:39 +0000
committerPatrick Storz <eduard.braun2@gmx.de>2019-10-25 17:19:39 +0000
commit06092bd380bacd51f67d2f6ae859522fda43a91a (patch)
tree7b0a64688f8349350a274af0b24dd9004864e321 /buildtools
parentAllow select text elements by bounding box (diff)
downloadinkscape-06092bd380bacd51f67d2f6ae859522fda43a91a.tar.gz
inkscape-06092bd380bacd51f67d2f6ae859522fda43a91a.zip
CMake/MSYS2: Fix for Python 3.8 update
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/msys2checkdeps.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/msys2checkdeps.py b/buildtools/msys2checkdeps.py
index 68176286c..31f7d5f02 100644
--- a/buildtools/msys2checkdeps.py
+++ b/buildtools/msys2checkdeps.py
@@ -93,7 +93,7 @@ def collect_dependencies(path):
deps = get_dependencies(path, deps)
elif os.path.isdir(path):
extensions = ['.exe', '.pyd', '.dll']
- exclusions = ['python3.7/distutils/command/wininst']
+ exclusions = ['distutils/command/wininst'] # python
for base, dirs, files in os.walk(path):
for f in files:
filepath = os.path.join(base, f)