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.
This commit is contained in:
dundargoc 2024-01-21 13:08:13 +01:00 committed by dundargoc
parent fa4b02fa67
commit 3f188bc533
1 changed files with 1 additions and 1 deletions

View File

@ -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)