From 6647f3c047b17345e1869a55fe0d12c32c3af524 Mon Sep 17 00:00:00 2001 From: John Szakmeister Date: Mon, 15 Aug 2016 05:43:25 -0400 Subject: [PATCH] third-party: don't build busted in parallel with anything luarocks has had trouble in the past with multiple build/install commands running at the same time. --- third-party/cmake/BuildLuarocks.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third-party/cmake/BuildLuarocks.cmake b/third-party/cmake/BuildLuarocks.cmake index daf39ec271..7535475ed5 100644 --- a/third-party/cmake/BuildLuarocks.cmake +++ b/third-party/cmake/BuildLuarocks.cmake @@ -130,7 +130,7 @@ if(USE_BUNDLED_BUSTED) add_custom_command(OUTPUT ${HOSTDEPS_BIN_DIR}/busted COMMAND ${LUAROCKS_BINARY} ARGS build https://raw.githubusercontent.com/Olivine-Labs/busted/v2.0.rc11-0/busted-2.0.rc11-0.rockspec ${LUAROCKS_BUILDARGS} - DEPENDS lpeg) + DEPENDS inspect) add_custom_target(busted DEPENDS ${HOSTDEPS_BIN_DIR}/busted)