diff options
author | Daniel Hahler <git@thequod.de> | 2019-06-29 22:25:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-29 22:25:00 +0200 |
commit | 52fced6090aaf9c633e613e5fd46f0793705f22c (patch) | |
tree | f28618454530f922d399385d85da5e32de723c4a /third-party/cmake/BuildLua.cmake | |
parent | 9875372607cb5afd21780b3917b0ed6899098e7c (diff) | |
download | rneovim-52fced6090aaf9c633e613e5fd46f0793705f22c.tar.gz rneovim-52fced6090aaf9c633e613e5fd46f0793705f22c.tar.bz2 rneovim-52fced6090aaf9c633e613e5fd46f0793705f22c.zip |
build: update some test dependencies (#10339)
* build: update some test dependencies
* luacheck ignores
* BuildLua: add ${BUSTED} to depends for ${BUSTED_LUA}
This is required to rebuild it when busted gets updated.
Diffstat (limited to 'third-party/cmake/BuildLua.cmake')
-rw-r--r-- | third-party/cmake/BuildLua.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/third-party/cmake/BuildLua.cmake b/third-party/cmake/BuildLua.cmake index eab835a096..c3f789509e 100644 --- a/third-party/cmake/BuildLua.cmake +++ b/third-party/cmake/BuildLua.cmake @@ -91,7 +91,7 @@ set(BUSTED_LUA ${BUSTED}-lua) add_custom_command(OUTPUT ${BUSTED_LUA} COMMAND sed -e 's/^exec/exec $$LUA_DEBUGGER/' -e 's/jit//g' < ${BUSTED} > ${BUSTED_LUA} && chmod +x ${BUSTED_LUA} - DEPENDS lua busted) + DEPENDS lua busted ${BUSTED}) add_custom_target(busted-lua DEPENDS ${DEPS_INSTALL_DIR}/bin/busted-lua) |