diff options
author | Pim van Pelt <pim@ipng.nl> | 2020-12-29 00:10:42 +0100 |
---|---|---|
committer | Matthew Smith <mgsmith@netgate.com> | 2021-01-11 20:42:13 +0000 |
commit | b6f367e3a1d17f8e6aadc3b5a59800da7af33dab (patch) | |
tree | 5e629e3d403751672099c3d8d38ea55e108ea5b8 /Makefile | |
parent | 9822729742168c877a301ff50a3a1067b90a89ad (diff) |
build: Add deps for ubuntu 20.10
Type: make
Ubuntu Groovy Gorilla (20.10) has bumped its FFI library.
Move from v6 to v8.
Signed-off-by: Pim van Pelt <pim@ipng.nl>
Change-Id: I32bc2905ad9ed6918446020accee2a4c2ca9d4b5
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -85,6 +85,12 @@ else ifeq ($(OS_VERSION_ID),20.04) DEB_DEPENDS += libelf-dev # for libbpf (af_xdp) DEB_DEPENDS += clang-format-10 LIBFFI=libffi7 +else ifeq ($(OS_VERSION_ID),20.10) + DEB_DEPENDS += python3-virtualenv + DEB_DEPENDS += libssl-dev + DEB_DEPENDS += libelf-dev # for libbpf (af_xdp) + DEB_DEPENDS += clang-format-10 + LIBFFI=libffi8ubuntu1 else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-9) DEB_DEPENDS += libssl1.0-dev DEB_DEPENDS += python-all python-pip |