Browse Source

buildsystem: remove stray -tv option

It's not supported since 2ab57d188e.
merge-requests/2271/head
Steve Lhomme 1 year ago
parent
commit
9c22e73448
  1. 7
      buildsystem/compile.sh

7
buildsystem/compile.sh

@ -40,7 +40,6 @@ while [ $# -gt 0 ]; do
echo "Use -b to bypass libvlc source checks (vlc custom sources)"
echo "Use -t to use prebuilt contribs for LibVLC"
echo "Use -m2 to set the maven local repository path to use"
echo "Use -tv to include the TV module"
exit 0
;;
a|-a)
@ -100,10 +99,6 @@ while [ $# -gt 0 ]; do
-vlc4)
FORCE_VLC_4=1
;;
-tv)
NO_TV=1
RELEASE=1
;;
*)
diagnostic "$0: Invalid option '$1'."
diagnostic "$0: Try --help for more information."
@ -372,8 +367,6 @@ if [ "$TEST" = 1 ]; then
BUILDTYPE="Debug"
elif [ "$SIGNED_RELEASE" = 1 ]; then
BUILDTYPE="signedRelease"
elif [ "$NO_TV" = 1 ]; then
BUILDTYPE="NoTv"
elif [ "$RELEASE" = 1 ]; then
BUILDTYPE="Release"
fi

Loading…
Cancel
Save