From 3a7d870d721d39c239ccc9d7873f34e04c7914d3 Mon Sep 17 00:00:00 2001 From: David Tardon Date: Wed, 27 Mar 2013 11:34:08 +0100 Subject: file modes are octal Change-Id: I5aa118db8100be8945425ad195bfb72819953c73 --- nss/nsinstall.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'nss/nsinstall.py') diff --git a/nss/nsinstall.py b/nss/nsinstall.py index 67d696b59706..7be419730e74 100644 --- a/nss/nsinstall.py +++ b/nss/nsinstall.py @@ -86,11 +86,11 @@ def nsinstall(argv): if options.m: # mode is specified try: + options.m = int(options.m, 8) # I have no idea why nss insists on using this mode for installed headers. # It causes problems with updating the files during a rebuild. - if options.m == 444: - options.m = 644 - options.m = int(options.m) + if options.m == 0444: + options.m = 0644 except: sys.stderr.write('nsinstall: ' + options.m + ' is not a valid mode\n') return 1 @@ -147,7 +147,7 @@ def nsinstall(argv): shutil.copy2(srcpath, targetpath) else: if os.path.exists(targetpath): - os.chmod(targetpath, 755) + os.chmod(targetpath, 0755) os.remove(targetpath) shutil.copy(srcpath, targetpath) -- cgit v1.2.3