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