From 6b9705892400a1da1fcd973c64d1911c7c4463f6 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Thu, 20 Mar 2014 14:19:02 -0500 Subject: 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. Signed-off-by: Mark Hatle Signed-off-by: Richard Purdie --- meta/classes/useradd-staticids.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'meta/classes/useradd-staticids.bbclass') 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): python __anonymous() { - if not bb.data.inherits_class('nativesdk', d): + if not bb.data.inherits_class('nativesdk', d) \ + and not bb.data.inherits_class('native', d): try: update_useradd_static_config(d) except bb.build.FuncFailed as f: -- cgit 1.2.3-korg