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/recipes-extended/packagegroups | |
parent | c777a6d0ea9505aa57c1c5785af388c23c5e7731 (diff) | |
download | openembedded-core-contrib-af9612f5d6b848fceea22d10ee964437299be776.tar.gz |
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/recipes-extended/packagegroups')
-rw-r--r-- | meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb b/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb index e1f34d5af11..8ba02e62834 100644 --- a/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb +++ b/meta/recipes-extended/packagegroups/packagegroup-core-lsb.bb @@ -19,7 +19,7 @@ REQUIRED_DISTRO_FEATURES += "opengl" # python __anonymous () { if d.getVar('TCLIBC') != "glibc": - raise bb.parse.SkipPackage("incompatible with %s C library" % + raise bb.parse.SkipRecipe("incompatible with %s C library" % d.getVar('TCLIBC')) } |