summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndoni Morales Alastruey <ylatuya@gmail.com>2013-06-25 17:58:53 +0200
committerAndoni Morales Alastruey <ylatuya@gmail.com>2013-06-25 17:58:53 +0200
commit74a0bebf436cc2d3eea6cfca16417cfa713e297e (patch)
treefaf3a3d6c1259f5331571e09d83793ebeb726925
parent7dc4edd026342dac6669f4da54fe0995e68fe441 (diff)
bootstrap: build a more recent version of cmake in RHEL 6.x
-rw-r--r--cerbero/bootstrap/build_tools.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cerbero/bootstrap/build_tools.py b/cerbero/bootstrap/build_tools.py
index 581d949..f797885 100644
--- a/cerbero/bootstrap/build_tools.py
+++ b/cerbero/bootstrap/build_tools.py
@@ -48,6 +48,8 @@ class BuildTools (BootstraperBase):
self.config.distro_version == DistroVersion.DEBIAN_SQUEEZE:
# x264 requires yasm >= 1.0
self.BUILD_TOOLS.append('yasm')
+ if self.config.distro_version in [DistroVersion.REDHAT_6]:
+ self.BUILD_TOOLS.append('cmake')
if self.config.target_platform == Platform.IOS:
self.BUILD_TOOLS.append('gas-preprocessor')
if self.config.platform != Platform.LINUX and\