Skip to content
Snippets Groups Projects
Commit bf58e198 authored by Carola's avatar Carola
Browse files

buildAndDeployFrameworks: fix compilation for iOS

parent fc8f1b07
No related branches found
Tags 3.1.2
No related merge requests found
......@@ -119,7 +119,14 @@ clean()
buildMobileVLCKit()
{
log "Info" "Starting MobileVLCKit build..."
if ! $BUILD_MOBILEVLCKIT "$1"; then
local option="$1"
if [ "$DEPLOY_MOBILEVLCKIT" = "yes" ]; then
option=""
fi
if ! $BUILD_MOBILEVLCKIT $option; then
log "Error" "MobileVLCKit build failed"
rm -fr "build/"
exit 1
......
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