From 14bfb66d39ff50de24e8515268250ee9bdee2ef3 Mon Sep 17 00:00:00 2001 From: Dave Wallace Date: Thu, 14 Jan 2021 16:46:49 -0500 Subject: build: add missing openssl-devel package for centos-8 vpp-ext-deps - In a new centos-8 installation, vpp-ext-deps fails on missing ssl.h header file after 'make install-deps'. Type: fix Signed-off-by: Dave Wallace Change-Id: I521d817dd1f1e21aff427d98b9832ea7c7b89339 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6b5f50a7af4..53218e2bbca 100644 --- a/Makefile +++ b/Makefile @@ -122,7 +122,7 @@ ifeq ($(OS_ID),fedora) RPM_DEPENDS_GROUPS = 'C Development Tools and Libraries' else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8) RPM_DEPENDS += yum-utils - RPM_DEPENDS += compat-openssl10 + RPM_DEPENDS += compat-openssl10 openssl-devel RPM_DEPENDS += python2-devel python36-devel python3-ply RPM_DEPENDS += python3-virtualenv python3-jsonschema RPM_DEPENDS += cmake -- cgit 1.2.3-korg