diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2020-09-23 20:19:37 -0400 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2020-09-24 14:27:09 +0000 |
commit | c359dfa1869d888d934fd0fd362ece21f9ffc26c (patch) | |
tree | 84073b27c067814d7d10279836c40c53baeb5b88 /Makefile | |
parent | dccf863d79ee59ff1e86b3b308671648a1d5642c (diff) |
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 <dwallacelf@gmail.com>
Change-Id: Ib6a6f120147e8ae0dcfead6fae9f0a7a3434d687
(cherry picked from commit 17569cbeb25c7eba9cd818bea98448b11b05532c)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |