[Android] buildsystem: remove stray -tv option

Steve Lhomme git at videolan.org
Tue Jun 24 12:30:15 UTC 2025


vlc-android | branch: master | Steve Lhomme <robux4 at ycbcr.xyz> | Tue Jun 24 13:25:56 2025 +0200| [9c22e7344803bba6697d943b95d6c8cabcce9b87] | committer: Steve Lhomme

buildsystem: remove stray -tv option

It's not supported since 2ab57d188e4fba779e5e9ced85cd702ae5d73025.

> https://code.videolan.org/videolan/vlc-android/commit/9c22e7344803bba6697d943b95d6c8cabcce9b87
---

 buildsystem/compile.sh | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/buildsystem/compile.sh b/buildsystem/compile.sh
index 7d0df848cc..04a3660aa4 100755
--- a/buildsystem/compile.sh
+++ b/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



More information about the Android mailing list