Merge pull request #627 from harmony-ek/honor_hmy_path_if_set

Honor HMY_PATH if set
pull/646/head
Eugene Kim 6 years ago committed by GitHub
commit 5e661d6487
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      scripts/setup_bls_build_flags.sh

@ -6,15 +6,19 @@ case "${0}" in
*) progdir=.;;
esac
unset -v gopath
gopath=$(go env GOPATH)
# HMY_PATH is the common root directory of all harmony repos
HMY_PATH="${gopath%%:*}/src/github.com/harmony-one"
if [ ! -d $HMY_PATH ]; then
case "${HMY_PATH+set}" in
"")
unset -v gopath
gopath=$(go env GOPATH)
# HMY_PATH is the common root directory of all harmony repos
HMY_PATH="${gopath%%:*}/src/github.com/harmony-one"
if [ ! -d $HMY_PATH ]; then
# "env pwd" uses external pwd(1) implementation and not the Bash built-in,
# which does not fully dereference symlinks.
HMY_PATH=$(cd $progdir/../.. && env pwd)
fi
fi
;;
esac
: ${OPENSSL_DIR="/usr/local/opt/openssl"}
: ${MCL_DIR="${HMY_PATH}/mcl"}
: ${BLS_DIR="${HMY_PATH}/bls"}

Loading…
Cancel
Save