aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Szakmeister <john@szakmeister.net>2014-11-09 08:31:33 -0500
committerJohn Szakmeister <john@szakmeister.net>2014-11-09 08:31:33 -0500
commitdcccc1a50de3caea62ab12f9e15fc6f3e242b5c4 (patch)
tree54cb86c36c23f800cdf2d6a00a66fbd5fe14114d /src
parentc744bb8144b5dd14c014817b9250aa5325d53cfe (diff)
parent9344a40e741557948215dfeb4ae32b7c0d6d7b6b (diff)
downloadrneovim-dcccc1a50de3caea62ab12f9e15fc6f3e242b5c4.tar.gz
rneovim-dcccc1a50de3caea62ab12f9e15fc6f3e242b5c4.tar.bz2
rneovim-dcccc1a50de3caea62ab12f9e15fc6f3e242b5c4.zip
Merge pull request #1437 from jszakmeister/build-search-fixes
A few fixes for some build-related issues.
Diffstat (limited to 'src')
-rw-r--r--src/nvim/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt
index 5b97cf5f40..4e0819cc0e 100644
--- a/src/nvim/CMakeLists.txt
+++ b/src/nvim/CMakeLists.txt
@@ -158,8 +158,8 @@ else()
endif()
endif()
-if(HAVE_ICONV_LIB)
- list(APPEND NVIM_LINK_LIBRARIES iconv)
+if(Iconv_LIBRARIES)
+ list(APPEND NVIM_LINK_LIBRARIES ${Iconv_LIBRARIES})
endif()
# Put these last on the link line, since multiple things may depend on them.