summaryrefslogtreecommitdiffstats
path: root/Modules/FindLibXslt.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/FindLibXslt.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/FindLibXslt.cmake')
-rw-r--r--Modules/FindLibXslt.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindLibXslt.cmake b/Modules/FindLibXslt.cmake
index 1f49c3b..1e42f42 100644
--- a/Modules/FindLibXslt.cmake
+++ b/Modules/FindLibXslt.cmake
@@ -25,7 +25,7 @@
# use pkg-config to get the directories and then use these values
# in the FIND_PATH() and FIND_LIBRARY() calls
-FIND_PACKAGE(PkgConfig)
+FIND_PACKAGE(PkgConfig QUIET)
PKG_CHECK_MODULES(PC_LIBXSLT QUIET libxslt)
SET(LIBXSLT_DEFINITIONS ${PC_LIBXSLT_CFLAGS_OTHER})