From 17569cbeb25c7eba9cd818bea98448b11b05532c Mon Sep 17 00:00:00 2001 From: Dave Wallace Date: Wed, 23 Sep 2020 20:19:37 -0400 Subject: [PATCH] build: fix missing openssl package on debian-10 - libssl-dev missing on debian-10 breaks 'make install-ext-deps' Type: fix Signed-off-by: Dave Wallace Change-Id: Ib6a6f120147e8ae0dcfead6fae9f0a7a3434d687 --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index dd852229489..6a4886ff667 100644 --- a/Makefile +++ b/Makefile @@ -92,6 +92,7 @@ else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-9) DEB_DEPENDS += python-all python-pip DEB_DEPENDS += python-dev python-all python-pip python-virtualenv else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-10) + DEB_DEPENDS += libssl-dev DEB_DEPENDS += libelf-dev # for libbpf (af_xdp) else DEB_DEPENDS += libssl-dev -- 2.16.6