From 9554889964c6a80a696c2e575c60b5d2a45f8ca9 Mon Sep 17 00:00:00 2001 From: bb010g Date: Sun, 27 Jul 2025 00:35:54 -0700 Subject: [PATCH] build: Move back to upstream edlib (#2357) ### Problem description The current edlib submodule references a commit that's not present in . This throws off submodule initialization and makes building an ImHex Flatpak using upstream Git HEAD require some nasty Git bodges. ### Implementation description Switching to in `.gitmodules` is all that is necessary, since properly exists. ### Screenshots _This section was intentionally left blank._ ### Additional things For those curious, I'm currently working around this by manually appending ```gitconfig [url "https://github.com/Martinsos/edlib"] insteadOf = "https://github.com/blawrence-ont/edlib" ``` to `${flatpak_builder_state}/git/https_github.com_blawrence-ont_edlib/config` after `flatpak-builder` has cloned the repository and failed. I know this is a brittle solution. --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 0b72b16ad..c678d3e9d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -24,7 +24,7 @@ ignore = dirty [submodule "lib/third_party/edlib"] path = lib/third_party/edlib - url = https://github.com/blawrence-ont/edlib + url = https://github.com/Martinsos/edlib ignore = dirty [submodule "lib/third_party/lunasvg"] path = lib/third_party/lunasvg