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