diff options
| author | Martin Jansa <martin.jansa@gmail.com> | 2018-01-19 15:19:42 +0000 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2018-03-12 09:58:09 -0700 |
| commit | 57e0abf025370180ca41fb15b3d1697b2f8b8d4a (patch) | |
| tree | 553a6086290ca2384fc937585a3c73c07ec85444 /meta-oe/recipes-support/xorg-xrdp/xorgxrdp_0.2.5.bb | |
| parent | 271ce3576be25d8012af15961f827aa2235e6434 (diff) | |
| download | meta-openembedded-57e0abf025370180ca41fb15b3d1697b2f8b8d4a.tar.gz | |
xorgxrdp: add distro_features_check for x11
* fixes: following errors in every world build:
ERROR: Nothing PROVIDES 'xrdp' (but meta-oe/recipes-support/xorg-xrdp/xorgxrdp_0.2.5.bb DEPENDS on or otherwise requires it)
xrdp was skipped: missing required distro feature 'x11' (not in DISTRO_FEATURES)
ERROR: Required build target 'meta-world-pkgdata' has no buildable providers.
Missing or unbuildable dependency chain was: ['meta-world-pkgdata', 'xorgxrdp', 'xrdp']
ERROR: Nothing PROVIDES 'virtual/libx11' (but meta-oe/recipes-support/xorg-xrdp/xorgxrdp_0.2.5.bb DEPENDS on or otherwise requires it)
libx11-diet PROVIDES virtual/libx11 but was skipped: missing required distro feature 'x11' (not in DISTRO_FEATURES)
libx11 PROVIDES virtual/libx11 but was skipped: missing required distro feature 'x11' (not in DISTRO_FEATURES)
ERROR: Required build target 'meta-world-pkgdata' has no buildable providers.
Missing or unbuildable dependency chain was: ['meta-world-pkgdata', 'xorgxrdp', 'virtual/libx11']
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/xorg-xrdp/xorgxrdp_0.2.5.bb')
| -rw-r--r-- | meta-oe/recipes-support/xorg-xrdp/xorgxrdp_0.2.5.bb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/meta-oe/recipes-support/xorg-xrdp/xorgxrdp_0.2.5.bb b/meta-oe/recipes-support/xorg-xrdp/xorgxrdp_0.2.5.bb index 0c779b5fd9..9355379840 100644 --- a/meta-oe/recipes-support/xorg-xrdp/xorgxrdp_0.2.5.bb +++ b/meta-oe/recipes-support/xorg-xrdp/xorgxrdp_0.2.5.bb | |||
| @@ -1,15 +1,16 @@ | |||
| 1 | SUMMARY = "Xorg drivers for xrdp." | 1 | SUMMARY = "Xorg drivers for xrdp." |
| 2 | 2 | ||
| 3 | LICENSE = "X11" | 3 | LICENSE = "X11" |
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=a2523660329fdca3d954c0a87390e007 \ | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=a2523660329fdca3d954c0a87390e007" |
| 5 | " | ||
| 6 | 5 | ||
| 7 | inherit autotools pkgconfig | 6 | inherit autotools pkgconfig |
| 8 | 7 | ||
| 9 | DEPENDS = "virtual/libx11 xserver-xorg xrdp nasm-native" | 8 | DEPENDS = "virtual/libx11 xserver-xorg xrdp nasm-native" |
| 10 | 9 | ||
| 11 | SRC_URI = "git://github.com/neutrinolabs/xorgxrdp.git \ | 10 | inherit distro_features_check |
| 12 | " | 11 | REQUIRED_DISTRO_FEATURES = "x11" |
| 12 | |||
| 13 | SRC_URI = "git://github.com/neutrinolabs/xorgxrdp.git" | ||
| 13 | 14 | ||
| 14 | SRCREV = "c122544f184d4031bbae1ad80fbab554c34a9427" | 15 | SRCREV = "c122544f184d4031bbae1ad80fbab554c34a9427" |
| 15 | 16 | ||
