diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-06-24 20:02:29 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-06-24 20:03:03 +0200 |
commit | 6aa229b3a25b0673c8c224627ef25391c10da4a8 (patch) | |
tree | d6509bea5d91563498f169d0891a5656631ff42c | |
parent | 11aa00c96a456c3e3bb9699fc96c61ebbe7574d4 (diff) |
bootstrap: Always build cmake on non-Linux platforms
-rw-r--r-- | cerbero/bootstrap/build_tools.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cerbero/bootstrap/build_tools.py b/cerbero/bootstrap/build_tools.py index f8784c1a..826668eb 100644 --- a/cerbero/bootstrap/build_tools.py +++ b/cerbero/bootstrap/build_tools.py @@ -56,6 +56,8 @@ class BuildTools (BootstrapperBase): self.BUILD_TOOLS.append('yasm') if self.config.distro_version in [DistroVersion.REDHAT_6]: self.BUILD_TOOLS.append('cmake') + else: + self.BUILD_TOOLS.append('cmake') if self.config.target_platform == Platform.LINUX: self.BUILD_TOOLS.append('app-image-kit') if self.config.target_platform == Platform.IOS: |