diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-25 11:31:14 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-25 11:31:16 +0000 |
commit | af9612f5d6b848fceea22d10ee964437299be776 (patch) | |
tree | 021395c32e084f2721c32e695a7369aae7095d4a /meta/classes/useradd-staticids.bbclass | |
parent | c777a6d0ea9505aa57c1c5785af388c23c5e7731 (diff) | |
download | openembedded-core-af9612f5d6b848fceea22d10ee964437299be776.tar.gz openembedded-core-af9612f5d6b848fceea22d10ee964437299be776.tar.bz2 openembedded-core-af9612f5d6b848fceea22d10ee964437299be776.zip |
classes/recipes: Convert SkipPackage -> SkipRecipe
The new name is much more consistent with what this actually means. We put
the pieces in place to rename everything a while back but looks like we
forgot to actually do it! Fix that now.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/useradd-staticids.bbclass b/meta/classes/useradd-staticids.bbclass index 589a99ff45..64bf6dc823 100644 --- a/meta/classes/useradd-staticids.bbclass +++ b/meta/classes/useradd-staticids.bbclass @@ -307,5 +307,5 @@ python __anonymous() { update_useradd_static_config(d) except NotImplementedError as f: bb.debug(1, "Skipping recipe %s: %s" % (d.getVar('PN'), f)) - raise bb.parse.SkipPackage(f) + raise bb.parse.SkipRecipe(f) } |