diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-02-03 02:18:22 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-02-04 11:07:49 +0100 |
commit | bbfdb84ae14d11dfcf2f28a09f03fdbadc2f5bd2 (patch) | |
tree | b6b757e95035cbb0f337930ad8f2d085ccaae8ea /cmake | |
parent | 611411bf85e05a3bf0b813c4db15c6bb4d0127ba (diff) | |
download | rneovim-bbfdb84ae14d11dfcf2f28a09f03fdbadc2f5bd2.tar.gz rneovim-bbfdb84ae14d11dfcf2f28a09f03fdbadc2f5bd2.tar.bz2 rneovim-bbfdb84ae14d11dfcf2f28a09f03fdbadc2f5bd2.zip |
build: Do not force busted into front of $PATH
This was a workaround from long ago, but it doesn't seem to be needed
anymore. And it breaks the $PATH on the Windows build (AppVeyor CI).
After this change python3 (and 2) is correctly detected on AppVeyor CI.
References #5946
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/RunTests.cmake | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cmake/RunTests.cmake b/cmake/RunTests.cmake index 58f19b6fa5..19aaf85d0f 100644 --- a/cmake/RunTests.cmake +++ b/cmake/RunTests.cmake @@ -1,6 +1,3 @@ -get_filename_component(BUSTED_DIR ${BUSTED_PRG} PATH) -set(ENV{PATH} "${BUSTED_DIR}:$ENV{PATH}") - set(ENV{VIMRUNTIME} ${WORKING_DIR}/runtime) set(ENV{NVIM_RPLUGIN_MANIFEST} ${WORKING_DIR}/Xtest_rplugin_manifest) set(ENV{XDG_CONFIG_HOME} ${WORKING_DIR}/Xtest_xdg/config) |