neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 3f188bc533bc22f1d13dce33ab5d63973c3ff22a
parent fa4b02fa67e5d04e37de7c767f811d497a72f95e
Author: dundargoc <gocdundar@gmail.com>
Date:   Sun, 21 Jan 2024 13:08:13 +0100

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.

Diffstat:
Msrc/nvim/CMakeLists.txt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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)