diff options
author | John Szakmeister <john@szakmeister.net> | 2016-08-15 05:45:28 -0400 |
---|---|---|
committer | John Szakmeister <john@szakmeister.net> | 2016-08-15 05:55:12 -0400 |
commit | 1d4506ee172d90d2a931c019dcd8ecca3ed151d1 (patch) | |
tree | bf1ebc616dffc523f30fe517793c4018e5d6b664 | |
parent | 6647f3c047b17345e1869a55fe0d12c32c3af524 (diff) | |
download | rneovim-1d4506ee172d90d2a931c019dcd8ecca3ed151d1.tar.gz rneovim-1d4506ee172d90d2a931c019dcd8ecca3ed151d1.tar.bz2 rneovim-1d4506ee172d90d2a931c019dcd8ecca3ed151d1.zip |
third-party: force the use of penlight 1.3.2-2 until busted is fixed
penlight 1.4.0 changed how files are being globbed and busted hasn't
been updated accordingly yet. See Olivine-Labs/busted#528 for more
information.
-rw-r--r-- | third-party/cmake/BuildLuarocks.cmake | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/third-party/cmake/BuildLuarocks.cmake b/third-party/cmake/BuildLuarocks.cmake index 7535475ed5..cbc1959d4f 100644 --- a/third-party/cmake/BuildLuarocks.cmake +++ b/third-party/cmake/BuildLuarocks.cmake @@ -127,10 +127,17 @@ add_custom_target(inspect list(APPEND THIRD_PARTY_DEPS inspect) if(USE_BUNDLED_BUSTED) + add_custom_command(OUTPUT ${HOSTDEPS_LIB_DIR}/luarocks/rocks/penlight/1.3.2-2 + COMMAND ${LUAROCKS_BINARY} + ARGS build penlight 1.3.2-2 ${LUAROCKS_BUILDARGS} + DEPENDS inspect) + add_custom_target(penlight + DEPENDS ${HOSTDEPS_LIB_DIR}/luarocks/rocks/penlight/1.3.2-2) + 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 inspect) + DEPENDS penlight) add_custom_target(busted DEPENDS ${HOSTDEPS_BIN_DIR}/busted) |