diff options
author | Scott Murray <scott.murray@konsulko.com> | 2020-06-25 12:48:30 -0400 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2020-06-25 12:48:30 -0400 |
commit | 3d6b46ce089bb6ee542278d6eec831fa4911bf3d (patch) | |
tree | f52e12e54b67c28095e191985db4680d163987e5 | |
parent | 017697ae1521404b0addf6f3d25ce7985b94ca5c (diff) |
agl-image-graphical-html5: fix distro_check_features usage
Fix the warning about usage of the deprecated distro_check_features
class by switching to the new check_features class. This slipped
through the cracks during the dunfell upgrade.
Bug-AGL: SPEC-3302
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: Ifc2de2b1b7a82330134c8f645a8b415651ff3931
-rw-r--r-- | meta-agl-profile-graphical-html5/recipes-platform/images/agl-image-graphical-html5.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-agl-profile-graphical-html5/recipes-platform/images/agl-image-graphical-html5.inc b/meta-agl-profile-graphical-html5/recipes-platform/images/agl-image-graphical-html5.inc index 21f3b19a..e943b990 100644 --- a/meta-agl-profile-graphical-html5/recipes-platform/images/agl-image-graphical-html5.inc +++ b/meta-agl-profile-graphical-html5/recipes-platform/images/agl-image-graphical-html5.inc @@ -4,6 +4,6 @@ IMAGE_FEATURES += "splash" IMAGE_FEATURES += "${@bb.utils.contains('DISTRO_FEATURES', 'agl-devel', 'ssh-server-dropbear' , '', d)}" -inherit distro_features_check +inherit features_check REQUIRED_DISTRO_FEATURES = "wayland" |