From 40e3577a65ac688814eff1239fa38b86aad19ee8 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Thu, 1 Oct 2020 13:02:08 -0700 Subject: split program related classes and functions out of dependencies Dependencies is already a large and complicated package without adding programs to the list. This also allows us to untangle a bit of spaghetti that we have. --- mesonbuild/modules/python.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mesonbuild/modules/python.py') diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py index 122f97714..f46f00eec 100644 --- a/mesonbuild/modules/python.py +++ b/mesonbuild/modules/python.py @@ -32,9 +32,9 @@ from .. import mlog from ..environment import detect_cpu_family from ..dependencies.base import ( DependencyMethods, ExternalDependency, - ExternalProgram, PkgConfigDependency, - NonExistingExternalProgram, NotFoundDependency + PkgConfigDependency, NotFoundDependency ) +from ..programs import ExternalProgram, NonExistingExternalProgram mod_kwargs = {'subdir'} mod_kwargs.update(known_shmod_kwargs) -- cgit v1.2.3