From 2b04c97c1b199a5b936b85ba241b9cbd5519b1e6 Mon Sep 17 00:00:00 2001 From: AlexandraTrifan Date: Tue, 26 Apr 2022 16:30:43 +0300 Subject: [PATCH] cmake/LinuxPackaging.cmake: Fix apt dependencies list. Otherwise .deb is not installable. Signed-off-by: Alexandra Trifan --- cmake/LinuxPackaging.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/LinuxPackaging.cmake b/cmake/LinuxPackaging.cmake index 328efe75c..d4d6181ca 100644 --- a/cmake/LinuxPackaging.cmake +++ b/cmake/LinuxPackaging.cmake @@ -115,7 +115,7 @@ if(DEB_DETECT_DEPENDENCIES AND DPKG_CMD AND DPKGQ_CMD) ${CPACK_DEBIAN_PACKAGE_DEPENDS}) else() # assume everything is turned on, and running on a modern OS - set(CPACK_DEBIAN_PACKAGE_DEPENDS "libaio (>= 0.3.109), libavahi-client (>= 0.6.31), libavahi-common (>= 0.6.31), libc6 (>= 2.19), libusb-1.0-0 (>= 2:1.0.17), libxml2 (>= 2.9.1), libserialport0 (>=0.1.1)") + set(CPACK_DEBIAN_PACKAGE_DEPENDS "libaio1 (>= 0.3.109), libavahi-client3 (>= 0.6.31), libavahi-common3 (>= 0.6.31), libavahi-common-data (>= 0.6.31), libc6 (>= 2.19), libusb-1.0-0 (>= 2:1.0.17), libxml2 (>= 2.9.1), libserialport0 (>=0.1.1)") message(STATUS "Using default dependencies for packaging") endif()