commit 668591ae04b3578d48d916680e4641c3c4afa525
parent 8a6f728315d5c87dcc091fb2ae723d91852b2102
Author: Dundar Goc <gocdundar@gmail.com>
Date: Sat, 18 Jun 2022 15:22:27 +0200
build(cmake): remove unnecessary globbing with file
There's no need to use globbing since there's only one file.
Diffstat:
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -636,11 +636,8 @@ endif()
include(InstallHelpers)
-file(GLOB MANPAGES
- RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
- man/nvim.1)
install_helper(
- FILES ${MANPAGES}
+ FILES ${CMAKE_SOURCE_DIR}/man/nvim.1
DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
#