Don't give up before check for libraries - they could be in search path.

pull/3004/head
Benjamin Redelings 7 years ago
parent 45a7d094cc
commit 80e4ac2d49
  1. 5
      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

Loading…
Cancel
Save