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:
commit
46400ec60d
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue