commuinty/openal-soft: disable neon on armhf

This commit is contained in:
Natanael Copa 2016-11-07 19:31:48 +00:00
parent 11dc3f5016
commit d69a3769ef

View File

@ -30,8 +30,15 @@ prepare() {
}
build() {
local _cpuext_neon=
cd "$_builddir"
cmake -DCMAKE_INSTALL_PREFIX="/usr" "$_srcdir" || return 1
case "$CARCH" in
armhf) _cpuext_neon=-DALSOFT_CPUEXT_NEON=OFF;;
esac
cmake -DCMAKE_INSTALL_PREFIX="/usr" \
$_cpuext_neon \
"$_srcdir" \
|| return 1
make || return 1
}