mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-14 14:25:53 +01:00
libtalloc: fix pytalloc package ordering
The libtalloc recipe did not properly populate the pytalloc package because pytalloc was listed after the main libtalloc package in the PACKAGES variable. As a result, the pytalloc package contained only talloc.so and was missing other required files. Signed-off-by: Moraless Philius <moraless.philius5@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
64440b3aae
commit
91a1d13cc4
|
|
@ -49,13 +49,15 @@ do_install_ptest() {
|
|||
install -m 0755 ${B}/bin/*_testsuite ${D}${PTEST_PATH}/tests/
|
||||
}
|
||||
|
||||
PACKAGES += "pytalloc pytalloc-dev"
|
||||
PACKAGES =+ "pytalloc pytalloc-dev"
|
||||
|
||||
RPROVIDES:${PN}-dbg += "pytalloc-dbg"
|
||||
|
||||
FILES:pytalloc = "${PYTHON_SITEPACKAGES_DIR}/* \
|
||||
${libdir}/libpytalloc-util.so.2 \
|
||||
${libdir}/libpytalloc-util.so.2.1.1 \
|
||||
${libdir}/libpytalloc-util.so.* \
|
||||
"
|
||||
FILES:pytalloc-dev = "${libdir}/libpytalloc-util.so \
|
||||
${includedir}/pytalloc.h \
|
||||
${libdir}/pkgconfig/pytalloc.pc \
|
||||
"
|
||||
FILES:pytalloc-dev = "${libdir}/libpytalloc-util.so"
|
||||
RDEPENDS:pytalloc = "python3"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user