aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordundargoc <gocdundar@gmail.com>2024-01-21 13:08:13 +0100
committerdundargoc <33953936+dundargoc@users.noreply.github.com>2024-01-21 15:19:25 +0100
commit3f188bc533bc22f1d13dce33ab5d63973c3ff22a (patch)
tree4be6627c1eb5cb6cc83b8a667322f6c64cd6c169
parentfa4b02fa67e5d04e37de7c767f811d497a72f95e (diff)
downloadrneovim-3f188bc533bc22f1d13dce33ab5d63973c3ff22a.tar.gz
rneovim-3f188bc533bc22f1d13dce33ab5d63973c3ff22a.tar.bz2
rneovim-3f188bc533bc22f1d13dce33ab5d63973c3ff22a.zip
build: fix parser installation location
Cmake's `install()` functions like rsync where a trailing slash changes whether the directory or its contents will be copies.
-rw-r--r--src/nvim/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt
index 451ab7c303..283be18ae7 100644
--- a/src/nvim/CMakeLists.txt
+++ b/src/nvim/CMakeLists.txt
@@ -768,7 +768,7 @@ if(EXISTS ${DEPS_PREFIX}/lib/nvim/parser)
endif()
install(DIRECTORY ${BINARY_LIB_DIR}
- DESTINATION ${CMAKE_INSTALL_LIBDIR}/nvim/
+ DESTINATION ${CMAKE_INSTALL_LIBDIR}
USE_SOURCE_PERMISSIONS)
if(NOT PREFER_LUA)