From ac8817bd6e65783c8d1be87b68cbb6327e2cf22c Mon Sep 17 00:00:00 2001 From: Michael Helmling Date: Sat, 16 Mar 2024 22:09:46 +0100 Subject: [PATCH] build_taglib.py: make taglib build dir implementation-dependent --- build_taglib.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build_taglib.py b/build_taglib.py index 6ab7f12..83c40f7 100644 --- a/build_taglib.py +++ b/build_taglib.py @@ -13,6 +13,7 @@ arch = "x64" if is_x64 else "x32" system = platform.system() python_version = platform.python_version() +python_implementation = sys.implementation.name here = Path(__file__).resolve().parent taglib_version = "2.0" @@ -26,7 +27,7 @@ class Configuration: def __init__(self): self.build_path = here / "build" - self.tl_install_dir = self.build_path / "taglib" / f"{system}-{arch}-py{python_version}" + self.tl_install_dir = self.build_path / "taglib" / f"{system}-{arch}-{python_implementation}-{python_version}" self.clean = False @property