From de2137562d73ea2365a4d98f6db097ef8aa5d86d Mon Sep 17 00:00:00 2001 From: Anonymous Maarten Date: Fri, 28 May 2021 23:03:41 +0200 Subject: [PATCH] cmake: find libuv pkgconfig non-QUIET --- cmake/modules/FindLibuv.cmake | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake/modules/FindLibuv.cmake b/cmake/modules/FindLibuv.cmake index 2906ba61..e9ed8e66 100644 --- a/cmake/modules/FindLibuv.cmake +++ b/cmake/modules/FindLibuv.cmake @@ -29,9 +29,9 @@ This module will set the following variables in your project: #]=======================================================================] find_package(PkgConfig QUIET) -if(PKG_CONFIG_FOUND) - pkg_check_modules(PkgLibuv IMPORTED_TARGET GLOBAL QUIET libuv) -endif() +if (PKG_CONFIG_FOUND) + pkg_check_modules(PkgLibuv IMPORTED_TARGET GLOBAL libuv) +endif () if (PkgLibuv_FOUND) set(LIBUV_INCLUDE_DIR ${PkgLibuv_INCLUDE_DIRS} CACHE FILEPATH "libuv include path")