From c472e3af64aa0cd10cf96bce6a1f4647a07e8935 Mon Sep 17 00:00:00 2001 From: Thiago de Arruda Date: Fri, 23 Jan 2015 17:47:45 -0300 Subject: [PATCH] deps: Update lua client The latest version works around a libuv bug that can leave zombie nvim processes despite the event loop being properly cleaned up. This can lead to functional tests being aborted depending on the maximum number of child processes configured for a platform. --- third-party/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/CMakeLists.txt b/third-party/CMakeLists.txt index 7c5906931d..302f7ab1f5 100644 --- a/third-party/CMakeLists.txt +++ b/third-party/CMakeLists.txt @@ -276,7 +276,7 @@ if(USE_BUNDLED_LUAROCKS) add_custom_command(OUTPUT ${DEPS_LIB_DIR}/luarocks/rocks/nvim-client COMMAND ${DEPS_BIN_DIR}/luarocks - ARGS build https://raw.githubusercontent.com/neovim/lua-client/a6c232da23dafe085c5606a3d0a666a77dd7d8bd/nvim-client-0.0.1-7.rockspec CC=${DEPS_C_COMPILER} LD=${DEPS_C_COMPILER} LIBUV_DIR=${DEPS_INSTALL_DIR} + ARGS build https://raw.githubusercontent.com/neovim/lua-client/af161f5f89c7877d0f650b5de6b3a6126b38f012/nvim-client-0.0.1-10.rockspec CC=${DEPS_C_COMPILER} LD=${DEPS_C_COMPILER} LIBUV_DIR=${DEPS_INSTALL_DIR} DEPENDS lpeg libuv) add_custom_target(nvim-client DEPENDS ${DEPS_LIB_DIR}/luarocks/rocks/nvim-client)