summaryrefslogtreecommitdiffstats
path: root/Modules/FindGnuTLS.cmake
diff options
context:
space:
mode:
authorRolf Eike Beer <eike@sf-mail.de>2012-01-23 18:03:54 (GMT)
committerRolf Eike Beer <eike@sf-mail.de>2012-01-23 19:03:49 (GMT)
commitede3ec5a799768482a7bc37ac44da99817b62316 (patch)
tree21e44d03c39aa11f1f2090e6c48ab0b62075bea4 /Modules/FindGnuTLS.cmake
parent86c9604f98b2271401cf7a53c251be51af15278c (diff)
downloadCMake-ede3ec5a799768482a7bc37ac44da99817b62316.zip
CMake-ede3ec5a799768482a7bc37ac44da99817b62316.tar.gz
CMake-ede3ec5a799768482a7bc37ac44da99817b62316.tar.bz2
use pkg_check_modules() quiet in other modules
Those modules will already print what they found or not using FPHSA, no need to do this twice.
Diffstat (limited to 'Modules/FindGnuTLS.cmake')
-rw-r--r--Modules/FindGnuTLS.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FindGnuTLS.cmake b/Modules/FindGnuTLS.cmake
index a437a1f..e69a16b 100644
--- a/Modules/FindGnuTLS.cmake
+++ b/Modules/FindGnuTLS.cmake
@@ -35,8 +35,8 @@ IF (NOT WIN32)
# try using pkg-config to get the directories and then use these values
# in the FIND_PATH() and FIND_LIBRARY() calls
# also fills in GNUTLS_DEFINITIONS, although that isn't normally useful
- FIND_PACKAGE(PkgConfig)
- PKG_CHECK_MODULES(PC_GNUTLS gnutls)
+ FIND_PACKAGE(PkgConfig QUIET)
+ PKG_CHECK_MODULES(PC_GNUTLS QUIET gnutls)
SET(GNUTLS_DEFINITIONS ${PC_GNUTLS_CFLAGS_OTHER})
ENDIF (NOT WIN32)