aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDundar Goc <gocdundar@gmail.com>2022-06-18 15:22:27 +0200
committerDundar Goc <gocdundar@gmail.com>2022-06-19 18:34:28 +0200
commit668591ae04b3578d48d916680e4641c3c4afa525 (patch)
tree5809ae2b873791c44620e6dff102e2dcf19cc086
parent8a6f728315d5c87dcc091fb2ae723d91852b2102 (diff)
downloadrneovim-668591ae04b3578d48d916680e4641c3c4afa525.tar.gz
rneovim-668591ae04b3578d48d916680e4641c3c4afa525.tar.bz2
rneovim-668591ae04b3578d48d916680e4641c3c4afa525.zip
build(cmake): remove unnecessary globbing with file
There's no need to use globbing since there's only one file.
-rw-r--r--CMakeLists.txt5
1 files changed, 1 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 73f418a96e..39659d6469 100644
--- 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)
#