From 6721e928e3b4276ffeb9afe35b83c3f49e541d8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20L=C3=B3pez-Cabanillas?= Date: Sat, 19 Aug 2023 11:28:55 +0200 Subject: [PATCH] fix for issue #1268: Pipewire's Jack implementation not found (#1269) --- cmake_admin/FindJack.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmake_admin/FindJack.cmake b/cmake_admin/FindJack.cmake index cb0e06de3..0788014df 100644 --- a/cmake_admin/FindJack.cmake +++ b/cmake_admin/FindJack.cmake @@ -9,7 +9,7 @@ Imported Targets This module provides the following imported targets, if found: -``Jack::libJack`` +``Jack::Jack`` The Jack library Result Variables @@ -35,7 +35,7 @@ find_path( find_library( Jack_LIBRARY NAMES "jack" - HINTS "${PC_JACK_LIBDIR}") + HINTS "${PC_JACK_LIBDIR}" "${PC_JACK_LIBRARY_DIRS}") # Handle transitive dependencies if(PC_JACK_FOUND)