extra/thunderbird fix

This commit is contained in:
Kevin Mihelich 2016-06-04 16:13:48 +00:00
parent fadd8d211a
commit 1986b45835

View file

@ -10,6 +10,7 @@
# - patch to remove NEON/SIMD checks from configure
# - memory saving LDFLAGS
# - disable jemalloc on aarch64
# - disable ion on !aarch64
buildarch=28
highmem=1
@ -89,6 +90,8 @@ prepare() {
if [[ $CARCH == "aarch64" ]]; then
echo "ac_add_options --disable-jemalloc" >> .mozconfig
echo 'ac_add_options --enable-optimize="-O2"' >> .mozconfig
else
echo "ac_add_options --disable-ion" >> .mozconfig
fi
}