diff options
author | Michael Lauer <mickey@vanille-media.de> | 2008-02-28 11:33:09 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2008-02-28 11:33:09 +0000 |
commit | cce74cd0f9a4c0cfd1ffd8170e58d645d635bc7e (patch) | |
tree | 9749f76f1028953c48f0debee454772cf0fd59c9 /classes | |
parent | a6aca0c99ea61a1cee31657bef1017d824e24c82 (diff) |
distutils-base.bbclass: package ${PN}-dev first, so that pkgconfig gets a chance to land there
Diffstat (limited to 'classes')
-rw-r--r-- | classes/distutils-base.bbclass | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/classes/distutils-base.bbclass b/classes/distutils-base.bbclass index 5150be76b9..c4551ace83 100644 --- a/classes/distutils-base.bbclass +++ b/classes/distutils-base.bbclass @@ -11,8 +11,17 @@ def python_dir(d): raise "No Python in STAGING_INCDIR. Forgot to build python-native ?" PYTHON_DIR = "${@python_dir(d)}" + +PACKAGES = "${PN}-dev ${PN}-dbg ${PN}-doc ${PN}" + FILES_${PN} = "${bindir}/* ${libdir}/* ${libdir}/${PYTHON_DIR}/*" -FILES_${PN}-dbg = "${libdir}/${PYTHON_DIR}/site-packages/.debug \ - ${libdir}/${PYTHON_DIR}/site-packages/*/.debug \ - ${libdir}/${PYTHON_DIR}/site-packages/*/*/.debug" +FILES_${PN}-dev += "\ + ${libdir}/pkgconfig \ + ${libdir}/${PYTHON_DIR}/site-packages/*.la \ +" +FILES_${PN}-dbg = "\ + ${libdir}/${PYTHON_DIR}/site-packages/.debug \ + ${libdir}/${PYTHON_DIR}/site-packages/*/.debug \ + ${libdir}/${PYTHON_DIR}/site-packages/*/*/.debug \ +" |