Make libffi version more flexible (#7734) (#7738)

* Make libffi version more flexible
Can not install on debian 12
Fixes #6036

* target v11 packaging on v12 install
we are only targeting one version per debian / ubuntu channel. This should not present a problem

(cherry picked from commit 4edea65e00)

Co-authored-by: Matthias Mair <code@mjmair.com>
This commit is contained in:
github-actions[bot] 2024-07-26 10:20:45 +10:00 committed by GitHub
parent 61b5a7d393
commit e5a36f6936
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -32,7 +32,7 @@ dependencies:
- gettext - gettext
- nginx - nginx
- jq - jq
- libffi7 - "libffi7 | libffi8"
targets: targets:
ubuntu-20.04: true ubuntu-20.04: true
debian-11: true debian-11: true

View File

@ -75,6 +75,7 @@ root_command() {
;; ;;
"Debian GNU/Linux" | "debian gnu/linux" | Raspbian) "Debian GNU/Linux" | "debian gnu/linux" | Raspbian)
if [[ $VER == "12" ]]; then if [[ $VER == "12" ]]; then
DIST_VER="11"
SUPPORTED=true SUPPORTED=true
elif [[ $VER == "11" ]]; then elif [[ $VER == "11" ]]; then
SUPPORTED=true SUPPORTED=true