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:
Moraless Philius 2025-11-10 12:15:12 +01:00 committed by Khem Raj
parent 64440b3aae
commit 91a1d13cc4
No known key found for this signature in database
GPG Key ID: BB053355919D3314

View File

@ -49,13 +49,15 @@ do_install_ptest() {
install -m 0755 ${B}/bin/*_testsuite ${D}${PTEST_PATH}/tests/ install -m 0755 ${B}/bin/*_testsuite ${D}${PTEST_PATH}/tests/
} }
PACKAGES += "pytalloc pytalloc-dev" PACKAGES =+ "pytalloc pytalloc-dev"
RPROVIDES:${PN}-dbg += "pytalloc-dbg" RPROVIDES:${PN}-dbg += "pytalloc-dbg"
FILES:pytalloc = "${PYTHON_SITEPACKAGES_DIR}/* \ FILES:pytalloc = "${PYTHON_SITEPACKAGES_DIR}/* \
${libdir}/libpytalloc-util.so.2 \ ${libdir}/libpytalloc-util.so.* \
${libdir}/libpytalloc-util.so.2.1.1 \
" "
FILES:pytalloc-dev = "${libdir}/libpytalloc-util.so" FILES:pytalloc-dev = "${libdir}/libpytalloc-util.so \
${includedir}/pytalloc.h \
${libdir}/pkgconfig/pytalloc.pc \
"
RDEPENDS:pytalloc = "python3" RDEPENDS:pytalloc = "python3"