aboutsummaryrefslogtreecommitdiff
path: root/modules/FindENCHANT.cmake
diff options
context:
space:
mode:
authorDavid Jarvie <djarvie@kde.org>2009-03-11 22:39:22 +0000
committerDavid Jarvie <djarvie@kde.org>2009-03-11 22:39:22 +0000
commitac954219018fac1c1cae99b6e69be9438e452233 (patch)
tree10cad1629c8be59082de88fe189d871d622192b4 /modules/FindENCHANT.cmake
parent85e20f5fffa43268e3ca4a5f745f4e1910cf3fea (diff)
downloadextra-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/FindENCHANT.cmake')
-rw-r--r--modules/FindENCHANT.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindENCHANT.cmake b/modules/FindENCHANT.cmake
index 0b30f326..9c13c488 100644
--- a/modules/FindENCHANT.cmake
+++ b/modules/FindENCHANT.cmake
@@ -22,7 +22,7 @@ else (ENCHANT_INCLUDE_DIR AND ENCHANT_LIBRARIES)
# 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_ENCHANT enchant)
+ pkg_check_modules(PC_ENCHANT QUIET enchant)
set(ENCHANT_DEFINITIONS ${PC_ENCHANT_CFLAGS_OTHER})
endif (NOT WIN32)