26f3ef
--- firefox-81.0.1/build/mach_initialize.py.old	2020-10-06 14:16:06.212974910 +0200
26f3ef
+++ firefox-81.0.1/build/mach_initialize.py	2020-10-06 14:19:03.313179557 +0200
26f3ef
@@ -507,7 +507,10 @@ class ImportHook(object):
26f3ef
         # doesn't happen or because it doesn't matter).
26f3ef
         if not os.path.exists(module.__file__[:-1]):
26f3ef
             if os.path.exists(module.__file__):
26f3ef
-                os.remove(module.__file__)
26f3ef
+                try:
26f3ef
+                    os.remove(module.__file__)
26f3ef
+                except:
26f3ef
+                    pass
26f3ef
             del sys.modules[module.__name__]
26f3ef
             module = self(name, globals, locals, fromlist, level)
26f3ef