From 5b16d557d8ae4fa49b52ce6f814ee4881e9d13bd Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Wed, 9 Apr 2014 18:54:06 +0000 Subject: [PATCH] fixed: control dir wrong chmod --- ext/toolchain/commands1.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/toolchain/commands1.py b/ext/toolchain/commands1.py index d3107dbf..e2fb97c2 100644 --- a/ext/toolchain/commands1.py +++ b/ext/toolchain/commands1.py @@ -1078,6 +1078,7 @@ class InternalCommands: metaDir = '%s/%s/DEBIAN' % (debDir, package) os.makedirs(metaDir) + os.chmod(metaDir, 0o0755) templateFile = open(resDir + '/deb/control.in') template = templateFile.read()