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