Commit e72d0a58 authored by Andrew Murray's avatar Andrew Murray
Browse files

Install cmake instead if cmake28 cannot be found in yum

parent 2d072669
......@@ -157,8 +157,10 @@ function get_cmake {
if [ -n "$IS_OSX" ]; then
brew install cmake > /dev/null
else
yum_install cmake28 > /dev/null
cmake=cmake28
if [ "`yum search cmake | grep ^cmake28\.`" ]; then
cmake=cmake28
fi
yum_install $cmake > /dev/null
fi
echo $cmake
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment