From f0170fc8ce40fe687cef4bcce2fd29f8a0c7eac6 Mon Sep 17 00:00:00 2001 From: Nico Lehmann Date: Sun, 20 Mar 2022 22:10:21 -0700 Subject: [PATCH] FIx "protocol on port 9418 is no longer supported" I was getting the following error when building: ``` fatal: remote error: The unauthenticated git protocol on port 9418 is no longer supported. Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information. ``` Changing the protocol to `https` solves the problem for me. --- CMake/SetupFfmpeg.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMake/SetupFfmpeg.cmake b/CMake/SetupFfmpeg.cmake index 3b00409c7c..00af1ad6b4 100644 --- a/CMake/SetupFfmpeg.cmake +++ b/CMake/SetupFfmpeg.cmake @@ -83,7 +83,7 @@ else() "n${SM_FFMPEG_VERSION}" "--depth" "1" - "git://github.com/stepmania/ffmpeg.git" + "https://github.com/stepmania/ffmpeg.git" "${SM_FFMPEG_SRC_DIR}" CONFIGURE_COMMAND "${FFMPEG_CONFIGURE}"