From 1daaaf74a63a09702b65676ba18f559d3c6ebc83 Mon Sep 17 00:00:00 2001 From: Alexandru Croitor Date: Fri, 27 Sep 2019 15:12:46 +0200 Subject: [PATCH] Fix libsystemd find module name At least on Ubuntu the name of the pkg config package is libsystemd and not systemd. This fixes libsystemd showing up as not found in the feature summary. Change-Id: I099a253026ca8096b9e2f348a5f35209d44acc6c Reviewed-by: Albert Astals Cid Reviewed-by: Qt CMake Build Bot --- cmake/FindLibsystemd.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/FindLibsystemd.cmake b/cmake/FindLibsystemd.cmake index 09c64529329..9b480700f9a 100644 --- a/cmake/FindLibsystemd.cmake +++ b/cmake/FindLibsystemd.cmake @@ -1,6 +1,6 @@ find_package(PkgConfig) -pkg_check_modules(Libsystemd systemd IMPORTED_TARGET) +pkg_check_modules(Libsystemd libsystemd IMPORTED_TARGET) if (NOT TARGET PkgConfig::Libsystemd) set(Libsystemd_FOUND 0)