[Android] buildsystem: reconfigure libsqlite3 if it wasn't built
Steve Lhomme
git at videolan.org
Tue Jun 24 10:32:39 UTC 2025
vlc-android | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Thu Jun 19 14:42:08 2025 +0200| [b1490aaa24345341559b2caad9dc1b1b88af7c29] | committer: Steve Lhomme
buildsystem: reconfigure libsqlite3 if it wasn't built
> https://code.videolan.org/videolan/vlc-android/commit/b1490aaa24345341559b2caad9dc1b1b88af7c29
---
buildsystem/compile-medialibrary.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/buildsystem/compile-medialibrary.sh b/buildsystem/compile-medialibrary.sh
index 7491244d14..9189d14ae6 100755
--- a/buildsystem/compile-medialibrary.sh
+++ b/buildsystem/compile-medialibrary.sh
@@ -72,7 +72,7 @@ if [ ! -d "build-$ANDROID_ABI" ]; then
fi;
cd "build-$ANDROID_ABI";
-if [ ! -e ./config.status ] || [ "$RELEASE" = "1" ]; then
+if [ ! -e ./config.status ] || [ "$RELEASE" = "1" ] || [ ! -e "${MEDIALIBRARY_PREFIX}/lib/libsqlite3.a" ]; then
../configure \
--host=$TARGET_TUPLE \
--prefix="${MEDIALIBRARY_PREFIX}" \
More information about the Android
mailing list