[Libreoffice-commits] core.git: nss/nsinstall.py

Peter Foley pefoley2 at verizon.net
Tue Mar 5 16:51:08 PST 2013


 nss/nsinstall.py |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 7b8411810239683911ad7ef749ed7943038949b4
Author: Peter Foley <pefoley2 at verizon.net>
Date:   Tue Mar 5 19:49:26 2013 -0500

    fix access is denied error in nss on windows
    
    Change-Id: I3b0ebab5e87897a9c29da4b3f97f7fb71cdd1751

diff --git a/nss/nsinstall.py b/nss/nsinstall.py
index e1728a9..67d696b 100644
--- a/nss/nsinstall.py
+++ b/nss/nsinstall.py
@@ -147,6 +147,7 @@ def nsinstall(argv):
         shutil.copy2(srcpath, targetpath)
       else:
         if os.path.exists(targetpath):
+          os.chmod(targetpath, 755)
           os.remove(targetpath)
         shutil.copy(srcpath, targetpath)
 


More information about the Libreoffice-commits mailing list