diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-09-12 21:19:00 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-09-12 21:19:00 +0300 |
commit | dd68c926f837c6fc5f73bc109bb85fd80fc1279a (patch) | |
tree | 5a0311ce7734edcd049af9202592b738ab0e5e2b | |
parent | 325ed6288ba58a8a45f3d31a02ccdb17c05a9bf2 (diff) | |
download | meson-dd68c926f837c6fc5f73bc109bb85fd80fc1279a.zip meson-dd68c926f837c6fc5f73bc109bb85fd80fc1279a.tar.gz meson-dd68c926f837c6fc5f73bc109bb85fd80fc1279a.tar.bz2 |
Boost path fix for Windows.
-rw-r--r-- | dependencies.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dependencies.py b/dependencies.py index 69e2613..d3a82db 100644 --- a/dependencies.py +++ b/dependencies.py @@ -403,7 +403,7 @@ class BoostDependency(Dependency): if self.boost_root is None: if mesonlib.is_windows(): self.boost_root = self.detect_win_root() - self.incdir = os.path.join(self.boost_root, 'boost') + self.incdir = self.boost_root else: self.incdir = '/usr/include' else: |