From: Jieqiang Wang Date: Wed, 12 Feb 2020 12:13:34 +0000 (+0000) Subject: build: add libssl-dev for ubuntu 16.04 and 18.04 X-Git-Tag: v20.09-rc0~435 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=7aef80b210752b1c9243799086fab0fe4df6272e build: add libssl-dev for ubuntu 16.04 and 18.04 The recent changes to Makefile lead to the lack of libssl-dev dependency for ubuntu 16.04 and 18.04. Add libssl-dev to DEB_DEPENDS variable for corresponding ubuntu version. Type: fix Change-Id: I42e0e4761d5ec377de71b11cccf747c7f55ca337 Signed-off-by: Jieqiang Wang --- diff --git a/Makefile b/Makefile index f69a688e881..545ccdb66fe 100644 --- a/Makefile +++ b/Makefile @@ -75,8 +75,10 @@ DEB_DEPENDS += python3-dev # needed for python3 -m pip install psutil ifeq ($(OS_VERSION_ID),16.04) DEB_DEPENDS += python-dev + DEB_DEPENDS += libssl-dev else ifeq ($(OS_VERSION_ID),18.04) DEB_DEPENDS += python-dev + DEB_DEPENDS += libssl-dev else ifeq ($(OS_ID)-$(OS_VERSION_ID),debian-8) DEB_DEPENDS += libssl-dev APT_ARGS = -t jessie-backports