diff options
author | dundargoc <gocdundar@gmail.com> | 2024-01-21 13:08:13 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2024-01-21 15:19:25 +0100 |
commit | 3f188bc533bc22f1d13dce33ab5d63973c3ff22a (patch) | |
tree | 4be6627c1eb5cb6cc83b8a667322f6c64cd6c169 | |
parent | fa4b02fa67e5d04e37de7c767f811d497a72f95e (diff) | |
download | rneovim-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.txt | 2 |
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) |