diff options
author | Christian Clason <christian.clason@uni-due.de> | 2020-07-24 22:39:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-24 22:39:12 +0200 |
commit | 38145b919d160ea63c2547533595e761b40cfe45 (patch) | |
tree | 91e8a1ae07906d2f535c3a4ffe91a20cf9c9971a | |
parent | 6c6cee644dc4f26a9ac311984a5f581f76390649 (diff) | |
download | rneovim-38145b919d160ea63c2547533595e761b40cfe45.tar.gz rneovim-38145b919d160ea63c2547533595e761b40cfe45.tar.bz2 rneovim-38145b919d160ea63c2547533595e761b40cfe45.zip |
build: remove duplicate empty CONFIGURE_COMMAND (#12676)
The cmake file for libvterm had an empty CONFIGURE_COMMAND "", which tells cmake to skip the configure step for this dependency (even though a later patch added another, actual, CONFIGURE_COMMAND two lines below). Evidently the recently released cmake 3.18.0 is pickier about this than previous versions, causing the build to fail. Removing this line makes the build successful again.
-rw-r--r-- | third-party/cmake/BuildLibvterm.cmake | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/third-party/cmake/BuildLibvterm.cmake b/third-party/cmake/BuildLibvterm.cmake index 61c1c90fa6..c3485dac25 100644 --- a/third-party/cmake/BuildLibvterm.cmake +++ b/third-party/cmake/BuildLibvterm.cmake @@ -27,7 +27,6 @@ function(BuildLibvterm) -DUSE_EXISTING_SRC_DIR=${USE_EXISTING_SRC_DIR} -P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/DownloadAndExtractFile.cmake PATCH_COMMAND "${_libvterm_PATCH_COMMAND}" - CONFIGURE_COMMAND "" BUILD_IN_SOURCE 1 CONFIGURE_COMMAND "${_libvterm_CONFIGURE_COMMAND}" BUILD_COMMAND "${_libvterm_BUILD_COMMAND}" |