Invert lgpl detection logic

This commit is contained in:
BtbN 2021-06-20 21:59:48 +02:00
parent 45a49a0a52
commit bf05bc130a
10 changed files with 10 additions and 10 deletions

View file

@ -3,7 +3,7 @@
XVID_SRC="https://downloads.xvid.com/downloads/xvidcore-1.3.7.tar.gz"
ffbuild_enabled() {
[[ $VARIANT == gpl* ]] || return -1
[[ $VARIANT == lgpl* ]] && return -1
return 0
}