--no-tcmalloc on darwin

This commit is contained in:
Joshua Peek 2011-08-02 21:49:58 -05:00
parent f3f230e4ae
commit 584aeb4dec

View file

@ -71,7 +71,12 @@ build_package_copy() {
}
build_package_ree_installer() {
{ ./installer --auto "$PREFIX_PATH"
local options="--auto $PREFIX_PATH"
if [[ "Darwin" = "$(uname)" ]]; then
options="$options --no-tcmalloc"
fi
{ ./installer $options
} >$LOG_PATH 2>&1
}