From 525e4acc3be0d721b9915f9b6b5b97a527e252bb Mon Sep 17 00:00:00 2001 From: Emmanuel Engelhart Date: Thu, 19 Dec 2024 16:02:45 +0100 Subject: [PATCH] Include libmicrohttpd patches on Flathub compilation --- .github/scripts/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/common.py b/.github/scripts/common.py index 8b931ff..aa86585 100644 --- a/.github/scripts/common.py +++ b/.github/scripts/common.py @@ -595,7 +595,7 @@ def update_flathub_git(): call(command) shutil.copy(str(BASE_DIR / "org.kiwix.desktop.json"), str(git_repo_dir)) patch_dir = KBUILD_SOURCE_DIR / "kiwixbuild" / "patches" - for dep in ["pugixml"]: + for dep in ["pugixml", "libmicrohttpd"]: for f in patch_dir.glob("{}_*.patch".format(dep)): shutil.copy(str(f), str(git_repo_dir / "patches")) command = ["git", "add", "-A", "."]