diff options
author | Mingli Yu <Mingli.Yu@windriver.com> | 2019-02-20 17:34:46 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-02-22 18:14:52 -0800 |
commit | 7acd6d7692c38e9ad1d5790f457ee812511dcdb5 (patch) | |
tree | ea1646354d63cc747d866b12586b6c0675847cd8 /meta-oe/recipes-support | |
parent | 48bdb941563c7858fa659632cbd701ff08341f96 (diff) | |
download | meta-openembedded-7acd6d7692c38e9ad1d5790f457ee812511dcdb5.tar.gz |
udisks2: add REQUIRED_DISTRO_FEATURES for polkit
After below commits to add polkit as a required
distro feature:
97a1a55 polkit: add polkit as a required distro feature
c049e02 polkit: inherit distro_features_check
Need to add REQUIRED_DISTRO_FEATURES for polkit to
fix below error for these packages which depend on
polkit:
$ bitbake udisk2
ERROR: Nothing PROVIDES 'polkit' (but /build/layers/meta-openembedded/meta-oe/recipes-support/udisks/udisks2_2.7.8.bb DEPENDS on or otherwise requires it)
Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support')
-rw-r--r-- | meta-oe/recipes-support/udisks/udisks2_2.7.8.bb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/udisks/udisks2_2.7.8.bb b/meta-oe/recipes-support/udisks/udisks2_2.7.8.bb index 64b338f11..95f8e22e0 100644 --- a/meta-oe/recipes-support/udisks/udisks2_2.7.8.bb +++ b/meta-oe/recipes-support/udisks/udisks2_2.7.8.bb | |||
@@ -27,7 +27,9 @@ S = "${WORKDIR}/git" | |||
27 | 27 | ||
28 | CVE_PRODUCT = "udisks" | 28 | CVE_PRODUCT = "udisks" |
29 | 29 | ||
30 | inherit autotools systemd gtk-doc gobject-introspection | 30 | inherit autotools systemd gtk-doc gobject-introspection distro_features_check |
31 | |||
32 | REQUIRED_DISTRO_FEATURES = "polkit" | ||
31 | 33 | ||
32 | EXTRA_OECONF = "--disable-man --disable-gtk-doc" | 34 | EXTRA_OECONF = "--disable-man --disable-gtk-doc" |
33 | 35 | ||