Skip to content

Commit

Permalink
elfutils: use https protocol for submodule
Browse files Browse the repository at this point in the history
Using git:// protocol for submodules quite often causes issues in
corporate setting where development machines are behind firewalls. For
http/https usually some transparent proxy would be provided, while git
protocol isn't proxied as nicely.

Let's avoid unnecessary complications and use https:// protocol for
elfutils submodule.

Signed-off-by: Andrii Nakryiko <andrii@kernel.org>
  • Loading branch information
anakryiko authored and alexforster committed Mar 20, 2024
1 parent 0afce4d commit 9ed58f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
url = https://github.com/libbpf/libbpf.git
[submodule "elfutils"]
path = elfutils
url = git://sourceware.org/git/elfutils.git
url = https://sourceware.org/git/elfutils.git
[submodule "zlib"]
path = zlib
url = https://github.com/madler/zlib.git

0 comments on commit 9ed58f7

Please sign in to comment.