Browse Source

buildsystem: compile.sh: Always clone VLC source if missing

merge-requests/1287/head
Hugo Beauzée-Luyssen 5 years ago
committed by Nicolas Pomepuy
parent
commit
fc9df14a9a
  1. 9
      buildsystem/compile.sh

9
buildsystem/compile.sh

@ -277,9 +277,6 @@ if [ ! -d "gradle/wrapper" ]; then
rm -rf gradle-${GRADLE_VERSION}-bin.zip
fi
if [ "$GRADLE_SETUP" = 1 ]; then
exit 0
fi
####################
# Fetch VLC source #
####################
@ -321,6 +318,12 @@ else
cd ..
fi
# Always clone VLC when using --init since we'll need to package some files
# during the final assembly (lua/hrtfs/..)
if [ "$GRADLE_SETUP" = 1 ]; then
exit 0
fi
############
# Make VLC #
############

Loading…
Cancel
Save