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

@ -6,7 +6,7 @@ FFTW3_SHA512="52ebc2a33063a41fd478f6ea2acbf3b511867f736591d273dd57f9dfca5d3e0b0c
ffbuild_enabled() {
# Dependency of GPL-Only librubberband
[[ $VARIANT == gpl* ]] || return -1
[[ $VARIANT == lgpl* ]] && return -1
return 0
}