diff options
author | John Szakmeister <john@szakmeister.net> | 2015-04-14 05:59:24 -0400 |
---|---|---|
committer | John Szakmeister <john@szakmeister.net> | 2015-04-14 05:59:24 -0400 |
commit | d22f2f94047a5ed1e930ee46d0d2e8d6aacfa104 (patch) | |
tree | 5fd73e64c0f8205b961a2d249208342bda6beb81 | |
parent | 53ba38d806ded97cbf13b011213ca444fbaa146a (diff) | |
download | rneovim-d22f2f94047a5ed1e930ee46d0d2e8d6aacfa104.tar.gz rneovim-d22f2f94047a5ed1e930ee46d0d2e8d6aacfa104.tar.bz2 rneovim-d22f2f94047a5ed1e930ee46d0d2e8d6aacfa104.zip |
third-party: temporarily drop back to an old version of the busted spec
The new one contains a clone url that does not work correctly. Once
that is fixed, we can go back to tracking master.
-rw-r--r-- | third-party/cmake/BuildLuarocks.cmake | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/third-party/cmake/BuildLuarocks.cmake b/third-party/cmake/BuildLuarocks.cmake index 590c41c5d5..fabceac3d8 100644 --- a/third-party/cmake/BuildLuarocks.cmake +++ b/third-party/cmake/BuildLuarocks.cmake @@ -56,7 +56,10 @@ add_custom_target(stable-busted-deps add_custom_command(OUTPUT ${DEPS_BIN_DIR}/busted COMMAND ${DEPS_BIN_DIR}/luarocks - ARGS build https://raw.githubusercontent.com/Olivine-Labs/busted/master/busted-scm-0.rockspec CC=${DEPS_C_COMPILER} LD=${DEPS_C_COMPILER} + ## Drop back to: + ## https://raw.githubusercontent.com/Olivine-Labs/busted/master/busted-scm-0.rockspec + ## once the spec file is fixed in busted. + ARGS build https://raw.githubusercontent.com/Olivine-Labs/busted/f803173cc136f7370f7416254eaf3bada01b04a9/busted-scm-0.rockspec CC=${DEPS_C_COMPILER} LD=${DEPS_C_COMPILER} DEPENDS stable-busted-deps) add_custom_target(busted DEPENDS ${DEPS_BIN_DIR}/busted) |