You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by up...@apache.org on 2019/04/25 21:25:54 UTC

[geode] branch develop updated: Updating the prepare_rc script to find the right version of openssl

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 8181426  Updating the prepare_rc script to find the right version of openssl
8181426 is described below

commit 81814268d66b9b6d6a8bff91e7c6e9e8acd56c13
Author: Dan Smith <up...@apache.org>
AuthorDate: Thu Apr 25 14:24:40 2019 -0700

    Updating the prepare_rc script to find the right version of openssl
---
 dev-tools/release/prepare_rc.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tools/release/prepare_rc.sh b/dev-tools/release/prepare_rc.sh
index 318d871..ca5bdcc 100755
--- a/dev-tools/release/prepare_rc.sh
+++ b/dev-tools/release/prepare_rc.sh
@@ -124,7 +124,7 @@ echo "============================================================"
 cd ${GEODE_NATIVE}
 mkdir build
 cd build
-cmake .. -DPRODUCT_VERSION=${VERSION} -DOPENSSL_ROOT_DIR=/usr/local/Cellar/openssl/1.0.2q/ -DGEODE_ROOT=${GEODE}/geode-assembly/build/install/apache-geode
+cmake .. -DPRODUCT_VERSION=${VERSION} -DOPENSSL_ROOT_DIR=$(brew --prefix openssl) -DGEODE_ROOT=${GEODE}/geode-assembly/build/install/apache-geode
 cpack -G TGZ --config CPackSourceConfig.cmake
 gpg --armor -u ${SIGNING_KEY} -b apache-geode-native-${VERSION}-src.tar.gz
 set +x