Merge branch 'append_kerl_options' into 'master'

Appends kerl config options to existing env. variable if set.

See merge request mythic-insight/legendary!65
This commit is contained in:
Robert Prehn 2021-06-15 17:44:41 +00:00
commit 46400ec60d

View file

@ -6,10 +6,10 @@ set -e
if ! brew -v &> /dev/null
then
echo "WARNING: Cannot find brew. Skipping brewfile installation."
export KERL_CONFIGURE_OPTIONS="--disable-hipe"
export KERL_CONFIGURE_OPTIONS="$KERL_CONFIGURE_OPTIONS --disable-hipe"
else
brew bundle
export KERL_CONFIGURE_OPTIONS="--disable-hipe --with-ssl=$(brew --prefix openssl)"
export KERL_CONFIGURE_OPTIONS="$KERL_CONFIGURE_OPTIONS --disable-hipe --with-ssl=$(brew --prefix openssl)"
fi
if ! which asdf &> /dev/null