diff options
author | Mikko Rapeli <mikko.rapeli@linaro.org> | 2022-09-12 10:32:18 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-09-13 10:36:50 +0100 |
commit | c9676445c942b95cc2bb71085d1648c02d774479 (patch) | |
tree | 18abb0fe36953971410dd3cd48c8a16b16695d5c /meta/recipes-core | |
parent | be267f61698d149ed2f65190f362fc556af1f54e (diff) | |
download | poky-c9676445c942b95cc2bb71085d1648c02d774479.tar.gz |
glibc-tests: use += instead of :append
:append can not be modified in bbappends and thus += is
better in re-usable, generic layers and recipes.
(From OE-Core rev: da88406ba592504a718f516b985adc0d4553080d)
Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/glibc/glibc-tests_2.36.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-core/glibc/glibc-tests_2.36.bb b/meta/recipes-core/glibc/glibc-tests_2.36.bb index aca9675ebb..c71c0831c6 100644 --- a/meta/recipes-core/glibc/glibc-tests_2.36.bb +++ b/meta/recipes-core/glibc/glibc-tests_2.36.bb | |||
@@ -4,7 +4,7 @@ require glibc-tests.inc | |||
4 | inherit ptest features_check | 4 | inherit ptest features_check |
5 | REQUIRED_DISTRO_FEATURES = "ptest" | 5 | REQUIRED_DISTRO_FEATURES = "ptest" |
6 | 6 | ||
7 | SRC_URI:append = " \ | 7 | SRC_URI += "\ |
8 | file://run-ptest \ | 8 | file://run-ptest \ |
9 | " | 9 | " |
10 | 10 | ||
@@ -29,7 +29,7 @@ python __anonymous() { | |||
29 | RPROVIDES:${PN} = "${PN}" | 29 | RPROVIDES:${PN} = "${PN}" |
30 | RRECOMMENDS:${PN} = "" | 30 | RRECOMMENDS:${PN} = "" |
31 | RDEPENDS:${PN} = " glibc sed" | 31 | RDEPENDS:${PN} = " glibc sed" |
32 | DEPENDS:append = " sed" | 32 | DEPENDS += "sed" |
33 | 33 | ||
34 | export oe_srcdir="${exec_prefix}/src/debug/glibc/${PV}/" | 34 | export oe_srcdir="${exec_prefix}/src/debug/glibc/${PV}/" |
35 | 35 | ||