diff options
author | Jieqiang Wang <jieqiang.wang@arm.com> | 2020-02-12 12:13:34 +0000 |
---|---|---|
committer | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2020-03-10 15:40:43 +0000 |
commit | 7aef80b210752b1c9243799086fab0fe4df6272e (patch) | |
tree | 9dfe25f1d9bfb8ad41c75366c9d4a62c74e7eaec | |
parent | a53068905eb3f005a5a6d324c37f51056fb49b3e (diff) |
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 <jieqiang.wang@arm.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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 |