diff options
author | Benjamin Redelings <benjamin.redelings@gmail.com> | 2018-02-08 08:38:17 -0500 |
---|---|---|
committer | Benjamin Redelings <benjamin.redelings@gmail.com> | 2018-02-08 08:38:17 -0500 |
commit | 80e4ac2d49f6b00e09c58dae83a6cbeb1ad2b082 (patch) | |
tree | 7eb28c037033538af1cd19bc996c28e4fd5c12d0 | |
parent | 45a7d094cca08ac743218965399ab8c3dbea877f (diff) | |
download | meson-80e4ac2d49f6b00e09c58dae83a6cbeb1ad2b082.zip meson-80e4ac2d49f6b00e09c58dae83a6cbeb1ad2b082.tar.gz meson-80e4ac2d49f6b00e09c58dae83a6cbeb1ad2b082.tar.bz2 |
Don't give up before check for libraries - they could be in search path.
-rw-r--r-- | mesonbuild/dependencies/misc.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/mesonbuild/dependencies/misc.py b/mesonbuild/dependencies/misc.py index 54ffa54..6d13d98 100644 --- a/mesonbuild/dependencies/misc.py +++ b/mesonbuild/dependencies/misc.py @@ -133,10 +133,6 @@ class BoostDependency(ExternalDependency): else: self.boost_roots = self.detect_nix_roots() - if self.boost_root is None and not self.boost_roots: - self.log_fail() - return - if self.incdir is None: if mesonlib.for_windows(self.want_cross, self.env): self.incdir = self.detect_win_incdir() @@ -361,7 +357,6 @@ class BoostDependency(ExternalDependency): # Does anyone do Boost cross-compiling to other archs on Windows? return None - def find_libraries_with_abi_tag(self, tag): # All modules should have the same tag |