diff options
author | John Szakmeister <john@szakmeister.net> | 2014-07-10 08:53:13 -0400 |
---|---|---|
committer | John Szakmeister <john@szakmeister.net> | 2014-07-10 08:53:13 -0400 |
commit | 8f17da61c56f13c3cde83b381092e5897fe621ca (patch) | |
tree | 8a9bdcd220b19c68fd723d127ea8be514857fa3f /src | |
parent | 308953ecbf22dd967f8c6647852835286d8548e8 (diff) | |
parent | e9ca4f002ff03ce9b3353c504de9a27fc23077ce (diff) | |
download | rneovim-8f17da61c56f13c3cde83b381092e5897fe621ca.tar.gz rneovim-8f17da61c56f13c3cde83b381092e5897fe621ca.tar.bz2 rneovim-8f17da61c56f13c3cde83b381092e5897fe621ca.zip |
Merge #933 'Avoid linking with libform(w).so'
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index dd5989f96f..0aa9415292 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -146,7 +146,7 @@ else() list(APPEND NVIM_LINK_LIBRARIES tinfo) else() find_package(Curses REQUIRED) - list(APPEND NVIM_LINK_LIBRARIES ${CURSES_LIBRARIES}) + list(APPEND NVIM_LINK_LIBRARIES ${CURSES_LIBRARY}) endif() endif() |