From 836e44892b729bfd0005abbdb2672a5e641a907a Mon Sep 17 00:00:00 2001 From: Matej Ferencevic Date: Thu, 21 Jun 2018 19:03:45 +0200 Subject: [PATCH] Fix DEB/RPM package dependencies Reviewers: buda Reviewed By: buda Subscribers: pullbot Differential Revision: https://phabricator.memgraph.io/D1444 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ecf5efb42..827284f02 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -324,7 +324,7 @@ set(CPACK_DEBIAN_PACKAGE_DESCRIPTION "${CPACK_PACKAGE_DESCRIPTION_SUMMARY} speed, simplicity and scale required to build the next generation of applications driver by real-time connected data.") # Add `openssl` package to dependencies list. Used to generate SSL certificates. -set(CPACK_DEBIAN_memgraph_PACKAGE_DEPENDS "openssl (>= 1.1.0)") +set(CPACK_DEBIAN_PACKAGE_DEPENDS "openssl (>= 1.1.0)") # RPM specific set(CPACK_RPM_PACKAGE_URL https://memgraph.com) @@ -341,7 +341,7 @@ set(CPACK_RPM_PACKAGE_DESCRIPTION "Contains Memgraph, the graph database. It aims to deliver developers the speed, simplicity and scale required to build the next generation of applications driver by real-time connected data.") # Add `openssl` package to dependencies list. Used to generate SSL certificates. -set(CPACK_RPM_memgraph_PACKAGE_REQUIRES "openssl >= 1.0.0") +set(CPACK_RPM_PACKAGE_REQUIRES "openssl >= 1.0.0") # All variables must be set before including. include(CPack)