From ad2edf4f82fe4f9d27257d92829e90f894bc94c6 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Tue, 24 Oct 2017 12:50:50 -0400 Subject: [PATCH] Linking: Reduce library dependencies in welcome module Welcome is only interested in checking partitions, not in resizing them, so stick to one library. This will become moot when the checks move to partitionmanager and KPMCore can do the things. --- src/modules/welcome/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/welcome/CMakeLists.txt b/src/modules/welcome/CMakeLists.txt index f73d8850d..42ce62beb 100644 --- a/src/modules/welcome/CMakeLists.txt +++ b/src/modules/welcome/CMakeLists.txt @@ -12,7 +12,7 @@ set( CHECKER_SOURCES checker/partman_devices.c ) set( CHECKER_LINK_LIBRARIES - ${LIBPARTED_LIBS} + ${LIBPARTED_LIBRARY} Qt5::DBus Qt5::Network )