From 7c69713dab81b1047471e0e8abc7c030b3993db5 Mon Sep 17 00:00:00 2001 From: BtbN Date: Sat, 5 Sep 2020 18:33:21 +0200 Subject: [PATCH] Exclude rav1e on release variants --- scripts.d/50-rav1e.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts.d/50-rav1e.sh b/scripts.d/50-rav1e.sh index d5c0e60..ae33cac 100755 --- a/scripts.d/50-rav1e.sh +++ b/scripts.d/50-rav1e.sh @@ -4,6 +4,7 @@ RAV1E_SRC_PREFIX="https://github.com/xiph/rav1e/releases/download/p20200901" ffbuild_enabled() { [[ $TARGET == win32 ]] && return -1 + [[ $VARIANT == *4.2* ]] && return -1 return 0 } @@ -41,5 +42,6 @@ ffbuild_configure() { } ffbuild_unconfigure() { + [[ $VARIANT == *4.2* ]] && return 0 echo --disable-librav1e }