mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 01:36:38 +01:00
With the autodebug package generation logic, specifically setting FILES_${PN}-dbg
isn't needed in most cases, we can remove them.
(From OE-Core rev: 3ab59d49dd7c18e194b58d1248b4b87709b5a738)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
380 B
Plaintext
20 lines
380 B
Plaintext
inherit python-dir
|
|
|
|
EXTRA_OEMAKE = ""
|
|
|
|
export STAGING_INCDIR
|
|
export STAGING_LIBDIR
|
|
|
|
PACKAGES = "${PN}-staticdev ${PN}-dev ${PN}-dbg ${PN}-doc ${PN}"
|
|
|
|
FILES_${PN} += "${libdir}/* ${libdir}/${PYTHON_DIR}/*"
|
|
|
|
FILES_${PN}-staticdev += "\
|
|
${PYTHON_SITEPACKAGES_DIR}/*.a \
|
|
"
|
|
FILES_${PN}-dev += "\
|
|
${datadir}/pkgconfig \
|
|
${libdir}/pkgconfig \
|
|
${PYTHON_SITEPACKAGES_DIR}/*.la \
|
|
"
|