diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-06-24 23:46:34 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-06-28 23:49:37 +0100 |
commit | 73cf55cdde1f3d2773b42f52d2fcf57665102c81 (patch) | |
tree | 0644cd947ff8c9d4e3917bc105fe296135059c15 /meta/recipes-graphics/xorg-util | |
parent | 4705dd264681d908f144dd4d9bf1f6175f68d8b9 (diff) | |
download | poky-73cf55cdde1f3d2773b42f52d2fcf57665102c81.tar.gz |
bitbake.conf/recipes: Introduce add DEV_PKG_DEPENDENCY to change RDEPENDS:${PN}-dev
There is a pattern that several recipes need to break the dependency of ${PN}-dev
on ${PN}, most often as ${PN} may be be empty. Add a new variable to parameterise
this and allow it to be changed more easily.
(From OE-Core rev: a5b381c0f45c590a762647a9956a8f41e2e2315e)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/xorg-util')
-rw-r--r-- | meta/recipes-graphics/xorg-util/util-macros_1.19.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/xorg-util/util-macros_1.19.3.bb b/meta/recipes-graphics/xorg-util/util-macros_1.19.3.bb index 0164256eb4..13d8ce22df 100644 --- a/meta/recipes-graphics/xorg-util/util-macros_1.19.3.bb +++ b/meta/recipes-graphics/xorg-util/util-macros_1.19.3.bb | |||
@@ -13,7 +13,7 @@ SRC_URI[md5sum] = "66cb74d4a0120a06e32c3b01c29417d8" | |||
13 | SRC_URI[sha256sum] = "624bb6c3a4613d18114a7e3849a3d70f2d7af9dc6eabeaba98060d87e3aef35b" | 13 | SRC_URI[sha256sum] = "624bb6c3a4613d18114a7e3849a3d70f2d7af9dc6eabeaba98060d87e3aef35b" |
14 | 14 | ||
15 | # ${PN} is empty so we need to tweak -dev and -dbg package dependencies | 15 | # ${PN} is empty so we need to tweak -dev and -dbg package dependencies |
16 | RDEPENDS:${PN}-dev = "" | 16 | DEV_PKG_DEPENDENCY = "" |
17 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" | 17 | RRECOMMENDS:${PN}-dbg = "${PN}-dev (= ${EXTENDPKGV})" |
18 | 18 | ||
19 | BBCLASSEXTEND = "native nativesdk" | 19 | BBCLASSEXTEND = "native nativesdk" |