]> code.ossystems Code Review - openembedded-core.git/commitdiff
sstate: Set umask to 002 before packaging runs
authorPhil Blundell <pb@pbcl.net>
Wed, 24 Apr 2013 12:07:47 +0000 (13:07 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 29 Apr 2013 13:43:50 +0000 (14:43 +0100)
Otherwise we might end up creating directories under sstate-cache with whatever
random umask has been selected for the task that we're trying to package.  This
would be a bad thing since it might result in losing group write access for
newly created dirs, and/or losing group read access for the sstate files
themselves.

Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/classes/sstate.bbclass

index 67ddc466ce2922f06f13226fdd0615bb3ddbf13f..79d38304fd8978b223f6a1453cdd19394adae590 100644 (file)
@@ -532,7 +532,11 @@ python sstate_task_postfunc () {
     sstate_install(shared_state, d)
     for intercept in shared_state['interceptfuncs']:
         bb.build.exec_func(intercept, d)
+    omask = os.umask(002)
+    if omask != 002:
+       bb.note("Using umask 002 (not %0o) for sstate packaging" % omask)
     sstate_package(shared_state, d)
+    os.umask(omask)
 }