libretro-uae4arm: fix none neon builds

This commit is contained in:
CvH 2018-08-01 17:16:11 +02:00
parent af9932cf32
commit 7111205e74

View File

@ -24,7 +24,13 @@ pre_configure_target() {
}
make_target() {
make HAVE_NEON=1 USE_PICASSO96=1
if target_has_feature neon; then
PKG_HAVE_NEON=1
else
PKG_HAVE_NEON=0
fi
make HAVE_NEON=$PKG_HAVE_NEON USE_PICASSO96=1
}
makeinstall_target() {