summaryrefslogtreecommitdiffstats
path: root/cmake/FindWrapSystemHarfbuzz.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/FindWrapSystemHarfbuzz.cmake')
-rw-r--r--cmake/FindWrapSystemHarfbuzz.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmake/FindWrapSystemHarfbuzz.cmake b/cmake/FindWrapSystemHarfbuzz.cmake
index 6829dc1430..a8dc6a14e6 100644
--- a/cmake/FindWrapSystemHarfbuzz.cmake
+++ b/cmake/FindWrapSystemHarfbuzz.cmake
@@ -7,7 +7,7 @@ endif()
set(WrapSystemHarfbuzz_FOUND OFF)
-find_package(harfbuzz)
+find_package(harfbuzz QUIET)
# Gentoo has some buggy version of a harfbuzz Config file. Check if include paths are valid.
set(__harfbuzz_target_name "harfbuzz::harfbuzz")
@@ -24,7 +24,7 @@ if(harfbuzz_FOUND AND TARGET "${__harfbuzz_target_name}")
endif()
if(__harfbuzz_broken_config_file)
- find_package(PkgConfig)
+ find_package(PkgConfig QUIET)
pkg_check_modules(harfbuzz harfbuzz IMPORTED_TARGET)
set(__harfbuzz_target_name "PkgConfig::harfbuzz")