You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by jb...@apache.org on 2018/03/30 21:53:05 UTC

[geode-native] branch develop updated: GEODE-4850: Fixes path to CMake 3.10.

This is an automated email from the ASF dual-hosted git repository.

jbarrett pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new 2dfd0ef  GEODE-4850: Fixes path to CMake 3.10.
2dfd0ef is described below

commit 2dfd0ef3c2cb19969887a1d10bf7dce01adc1d0d
Author: Jacob Barrett <jb...@pivotal.io>
AuthorDate: Fri Mar 30 14:52:37 2018 -0700

    GEODE-4850: Fixes path to CMake 3.10.
---
 packer/rhel/install-cmake.sh    | 2 +-
 packer/solaris/install-cmake.sh | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/packer/rhel/install-cmake.sh b/packer/rhel/install-cmake.sh
index 88c9966..ab3f79e 100644
--- a/packer/rhel/install-cmake.sh
+++ b/packer/rhel/install-cmake.sh
@@ -19,7 +19,7 @@ set -x -e -o pipefail
 
 tmp=`mktemp`
 
-curl -o ${tmp} -v -L https://cmake.org/files/LatestRelease/cmake-3.10.3-Linux-x86_64.sh
+curl -o ${tmp} -v -L https://cmake.org/files/v3.10/cmake-3.10.3-Linux-x86_64.sh
 
 bash ${tmp} --skip-license --prefix=/usr/local
 
diff --git a/packer/solaris/install-cmake.sh b/packer/solaris/install-cmake.sh
index 064b5a1..ae92354 100644
--- a/packer/solaris/install-cmake.sh
+++ b/packer/solaris/install-cmake.sh
@@ -22,7 +22,7 @@ source ~/.bashrc
 NCPU=2
 
 pushd `mktemp -d`
-wget -O - https://cmake.org/files/LatestRelease/cmake-3.10.3.tar.gz | \
+wget -O - https://cmake.org/files/v3.10/cmake-3.10.3.tar.gz | \
     gtar --strip-components=1 -zxf -
 ./bootstrap --system-curl --no-qt-gui --parallel=$NCPU -- -DBUILD_CursesDialog=off
 gmake -j$NCPU

-- 
To stop receiving notification emails like this one, please contact
jbarrett@apache.org.