WIP: convert to lwmk

Signed-off-by: Leah Rowe <leah@libreboot.org>
This commit is contained in:
Leah Rowe
2026-09-07 13:41:59 +01:00
parent 8d0ad21112
commit 2b34aeea5d
909 changed files with 6807 additions and 186660 deletions
@@ -0,0 +1,25 @@
From 50902dac61f2447168c46115d6ae8023908eb00e Mon Sep 17 00:00:00 2001
From: LibreWolf Developers <noreply@librewolf.net>
Date: Sun, 6 Sep 2026 10:09:16 +0100
Subject: [PATCH 04/52] bootstrap.patch
---
python/mozversioncontrol/mozversioncontrol/repo/source.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/python/mozversioncontrol/mozversioncontrol/repo/source.py b/python/mozversioncontrol/mozversioncontrol/repo/source.py
index 85048fafce91..71904adc1657 100644
--- a/python/mozversioncontrol/mozversioncontrol/repo/source.py
+++ b/python/mozversioncontrol/mozversioncontrol/repo/source.py
@@ -111,7 +111,7 @@ class SrcRepository(Repository):
for root, dirs, files in os.walk(self.path):
base = os.path.relpath(root, self.path)
for name in files:
- res.append(os.path.join(base, name))
+ res.append(os.path.join(base, name).replace("\\", "/"))
return res
def get_tracked_files_finder(self, path):
--
2.47.3