Skip to content
Snippets Groups Projects
Commit afb49f02 authored by Marvin Scholz's avatar Marvin Scholz
Browse files

Fix failure detection in libvlc build script

The avlc_checkfail checked the success of the removal, not the build,
which is wrong.
parent cfa2cd1c
No related branches found
No related tags found
1 merge request!290Buildscript fixes
Pipeline #10349 passed with stage
in 47 minutes and 34 seconds
......@@ -698,11 +698,11 @@ $NDK_BUILD -C $VLC_OUT_PATH/.. \
NDK_PROJECT_PATH=ndk \
NDK_TOOLCHAIN_VERSION=clang \
NDK_DEBUG=${NDK_DEBUG}
avlc_checkfail "ndk-build libvlc failed"
# Remove gdbserver to avoid conflict with libvlcjni.so debug options
rm -f $VLC_OUT_PATH/libs/${ANDROID_ABI}/gdb*
avlc_checkfail "ndk-build libvlc failed"
} # avlc_build()
if [ "$AVLC_SOURCED" != "1" ]; then
......
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