From 353b020d793cf405cc68188c298520c619028f04 Mon Sep 17 00:00:00 2001 From: Nicolas Rybowski Date: Tue, 15 Mar 2022 18:51:58 +0100 Subject: [PATCH] Fix arch/lib/Makefile: from git:// to https:// GitHub dropped today its support of the `git://` protocol. See https://github.blog/2021-09-01-improving-git-protocol-security-github/. --- arch/lib/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/lib/Makefile b/arch/lib/Makefile index ba6724a3c7a4..0f9db31a5ae2 100644 --- a/arch/lib/Makefile +++ b/arch/lib/Makefile @@ -15,7 +15,7 @@ include $(srctree)/scripts/Kbuild.include # targets LIBOS_TOOLS=$(ARCH_DIR)/tools -LIBOS_GIT_REPO=git://github.com/libos-nuse/linux-libos-tools +LIBOS_GIT_REPO=https://github.com/libos-nuse/linux-libos-tools KERNEL_LIB=liblinux-$(KERNELVERSION).so ALL_OBJS=$(OBJS) $(KERNEL_LIB) $(modules) $(all-obj-for-clean)