diff options
author | Daniel Hahler <git@thequod.de> | 2019-07-01 03:32:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-01 03:32:52 +0200 |
commit | 740fb337dd8c63b63db186057fca2994b92ddbf5 (patch) | |
tree | 396e784704566cc53ea773f406a4ccd0251959b6 /cmake/FindLibIntl.cmake | |
parent | 6e06f4795a6bd49a55456208dfec987c0498994b (diff) | |
download | rneovim-740fb337dd8c63b63db186057fca2994b92ddbf5.tar.gz rneovim-740fb337dd8c63b63db186057fca2994b92ddbf5.tar.bz2 rneovim-740fb337dd8c63b63db186057fca2994b92ddbf5.zip |
build: fix warning with passively available libintl (#10380)
Since 0364f51 it would display a warning.
Diffstat (limited to 'cmake/FindLibIntl.cmake')
-rw-r--r-- | cmake/FindLibIntl.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/FindLibIntl.cmake b/cmake/FindLibIntl.cmake index 738ae39983..989cb07488 100644 --- a/cmake/FindLibIntl.cmake +++ b/cmake/FindLibIntl.cmake @@ -58,6 +58,7 @@ if (HAVE_WORKING_LIBINTL) if(LibIntl_FIND_REQUIRED) unset(LibIntl_FIND_REQUIRED) endif() + set(LibIntl_FIND_QUIETLY ON) check_variable_exists(_nl_msg_cat_cntr HAVE_NL_MSG_CAT_CNTR) endif() |