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