diff options
| author | Eli Schwartz <eschwartz@archlinux.org> | 2022-07-24 20:09:15 -0400 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2023-02-22 10:32:09 -0800 |
| commit | aa69cf04484309f82d2da64c433539d2f6f2fa82 (patch) | |
| tree | 1e1cceb88d4e1ba78c09681dd7bdf2047af36388 /mesonbuild/dependencies/__init__.py | |
| parent | 29592481bccebe54619b4a063a66ac4038e894d6 (diff) | |
| download | meson-aa69cf04484309f82d2da64c433539d2f6f2fa82.tar.gz | |
merge the python dependency from the python module into dependencies
We have two copies of this code, and the python module one is vastly
superior, not just because it allows choosing which python executable to
base itself on. Unify this. Fixes various issues including non-Windows
support for sysconfig, and pypy edge cases.
Diffstat (limited to 'mesonbuild/dependencies/__init__.py')
| -rw-r--r-- | mesonbuild/dependencies/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/dependencies/__init__.py b/mesonbuild/dependencies/__init__.py index 36c3b020f..406228db4 100644 --- a/mesonbuild/dependencies/__init__.py +++ b/mesonbuild/dependencies/__init__.py @@ -39,7 +39,7 @@ from .misc import ( dl_factory, openssl_factory, libcrypto_factory, libssl_factory, ) from .platform import AppleFrameworks -from .python import python3_factory +from .python import python_factory as python3_factory from .qt import qt4_factory, qt5_factory, qt6_factory from .ui import GnuStepDependency, WxDependency, gl_factory, sdl2_factory, vulkan_factory |
