build: add libssl-dev for ubuntu 16.04 and 18.04 59/25259/4
authorJieqiang Wang <jieqiang.wang@arm.com>
Wed, 12 Feb 2020 12:13:34 +0000 (12:13 +0000)
committerPaul Vinciguerra <pvinci@vinciconsulting.com>
Tue, 10 Mar 2020 15:40:43 +0000 (15:40 +0000)
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 <jieqiang.wang@arm.com>
Makefile

index f69a688..545ccdb 100644 (file)
--- 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