libvpx: fix build with ndk-r23

Seems we need to explicitly pass -fPIC for all arches.
This commit is contained in:
Henrik Grimler 2021-10-22 15:31:28 +02:00
parent a2187e62df
commit a2fdb7679b
1 changed files with 2 additions and 1 deletions

View File

@ -52,5 +52,6 @@ termux_step_configure() {
--enable-pic \
--enable-vp8 \
--enable-shared \
--enable-small
--enable-small \
--extra-cflags="-fPIC"
}