diff options
| author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-07-08 20:57:09 +0530 |
|---|---|---|
| committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-07-09 04:09:46 +0530 |
| commit | 416a00308f5b0f228af3c93eb597eca8529fdbb0 (patch) | |
| tree | 39e2576abdb4b6e79fa96d488e4413dc3af652dd /mesonbuild/dependencies/__init__.py | |
| parent | 2093d45a4e1203d868d200628918472877c7ec31 (diff) | |
| download | meson-416a00308f5b0f228af3c93eb597eca8529fdbb0.tar.gz | |
cross: Use ExternalProgram for cross-file exe_wrapper
We already have code to fetch and find binaries specified in a cross
file, so use the same code for exe_wrapper. This allows us to handle
the same corner-cases that were fixed for other cross binaries.
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 5259c5bb6..00b6fa25f 100644 --- a/mesonbuild/dependencies/__init__.py +++ b/mesonbuild/dependencies/__init__.py @@ -14,7 +14,7 @@ from .boost import BoostDependency from .base import ( # noqa: F401 - Dependency, DependencyException, DependencyMethods, ExternalProgram, NonExistingExternalProgram, + Dependency, DependencyException, DependencyMethods, ExternalProgram, EmptyExternalProgram, NonExistingExternalProgram, ExternalDependency, NotFoundDependency, ExternalLibrary, ExtraFrameworkDependency, InternalDependency, PkgConfigDependency, find_external_dependency, get_dep_identifier, packages, _packages_accept_language) from .dev import GMockDependency, GTestDependency, LLVMDependency, ValgrindDependency |
