diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2014-03-20 14:19:02 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-21 12:05:49 +0000 |
commit | 29ee5c139eadd84fbb6b25b577e91bc4aa0c1038 (patch) | |
tree | b494026ed43639f382eef0298630f0b205164c90 /meta/classes/useradd-staticids.bbclass | |
parent | 49aad7da07e187f206e963001844605731b01247 (diff) | |
download | poky-29ee5c139eadd84fbb6b25b577e91bc4aa0c1038.tar.gz |
useradd{-static}: Ignore useradds on nativesdk
The code was supposed to ignore both native and nativesdk operations when
using the useradd and useradd-static code. However, somewhere along the way
the code was dropped. This didn't cause any issues until someone enabled the
enforcing mode in the new useradd-static and various nativesdk packages
started to fail.
(From OE-Core rev: 6b9705892400a1da1fcd973c64d1911c7c4463f6)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/useradd-staticids.bbclass')
-rw-r--r-- | meta/classes/useradd-staticids.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/useradd-staticids.bbclass b/meta/classes/useradd-staticids.bbclass index 3efe2a895a..a89cb10a4a 100644 --- a/meta/classes/useradd-staticids.bbclass +++ b/meta/classes/useradd-staticids.bbclass | |||
@@ -262,7 +262,8 @@ def update_useradd_static_config(d): | |||
262 | 262 | ||
263 | 263 | ||
264 | python __anonymous() { | 264 | python __anonymous() { |
265 | if not bb.data.inherits_class('nativesdk', d): | 265 | if not bb.data.inherits_class('nativesdk', d) \ |
266 | and not bb.data.inherits_class('native', d): | ||
266 | try: | 267 | try: |
267 | update_useradd_static_config(d) | 268 | update_useradd_static_config(d) |
268 | except bb.build.FuncFailed as f: | 269 | except bb.build.FuncFailed as f: |