Skip to content
Snippets Groups Projects
Commit 9acc47ca authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen
Browse files

compile-libvlc: Fix sqlite autoconf detection

sqlite doesn't generate a config.h file in amalgamated mode
parent 9f7057fd
No related branches found
No related tags found
No related merge requests found
......@@ -760,7 +760,8 @@ if [ ! -d "build-$ANDROID_ABI" ]; then
mkdir "build-$ANDROID_ABI";
fi;
cd "build-$ANDROID_ABI";
if [ ! -e ./config.h -o "$RELEASE" = 1 ]; then
if [ ! -e ./config.status -o "$RELEASE" = 1 ]; then
../configure \
--host=$TARGET_TUPLE \
--disable-shared \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment