neovim

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

commit 88c6e02c12d1bc5427d2c384e43ff758e7d0c450
parent fe159d23fdcc0e93d454bdfdb80e05e2941d7f07
Author: James McCoy <jamessan@jamessan.com>
Date:   Mon, 25 Jul 2022 21:41:03 -0400

Merge pull request #19508 from ii14/fix_older_cmake_makefiles

build: fix git version generation on makefiles with older cmake versions
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 @@ -268,7 +268,7 @@ foreach(sfile ${NVIM_SOURCES} set(depends "${HEADER_GENERATOR}" "${sfile}") if("${f}" STREQUAL "version.c") # Ensure auto/versiondef_git.h exists after "make clean". - list(APPEND depends "${NVIM_VERSION_GIT_H}") + list(APPEND depends update_version_stamp "${NVIM_VERSION_GIT_H}") endif() add_custom_command( OUTPUT "${gf_c_h}" "${gf_h_h}"