diff options
author | David Jarvie <djarvie@kde.org> | 2009-03-11 22:39:22 +0000 |
---|---|---|
committer | David Jarvie <djarvie@kde.org> | 2009-03-11 22:39:22 +0000 |
commit | ac954219018fac1c1cae99b6e69be9438e452233 (patch) | |
tree | 10cad1629c8be59082de88fe189d871d622192b4 /modules/FindLibXml2.cmake | |
parent | 85e20f5fffa43268e3ca4a5f745f4e1910cf3fea (diff) | |
download | extra-cmake-modules-ac954219018fac1c1cae99b6e69be9438e452233.tar.gz extra-cmake-modules-ac954219018fac1c1cae99b6e69be9438e452233.tar.bz2 |
Suppress 'not found' messages from pkgconfig when the module subsequently
attempts to locate the package by other means.
svn path=/trunk/KDE/kdelibs/; revision=938476
Diffstat (limited to 'modules/FindLibXml2.cmake')
-rw-r--r-- | modules/FindLibXml2.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindLibXml2.cmake b/modules/FindLibXml2.cmake index 453c261b..83858047 100644 --- a/modules/FindLibXml2.cmake +++ b/modules/FindLibXml2.cmake @@ -22,7 +22,7 @@ IF (NOT WIN32) # use pkg-config to get the directories and then use these values # in the FIND_PATH() and FIND_LIBRARY() calls FIND_PACKAGE(PkgConfig) - PKG_CHECK_MODULES(PC_LIBXML libxml-2.0) + PKG_CHECK_MODULES(PC_LIBXML QUIET libxml-2.0) SET(LIBXML2_DEFINITIONS ${PC_LIBXML_CFLAGS_OTHER}) ENDIF (NOT WIN32) |