aboutsummaryrefslogtreecommitdiffstats
path: root/classes/distutils-base.bbclass
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2008-02-28 11:33:09 +0000
committerMichael Lauer <mickey@vanille-media.de>2008-02-28 11:33:09 +0000
commitcce74cd0f9a4c0cfd1ffd8170e58d645d635bc7e (patch)
tree9749f76f1028953c48f0debee454772cf0fd59c9 /classes/distutils-base.bbclass
parenta6aca0c99ea61a1cee31657bef1017d824e24c82 (diff)
downloadopenembedded-cce74cd0f9a4c0cfd1ffd8170e58d645d635bc7e.tar.gz
distutils-base.bbclass: package ${PN}-dev first, so that pkgconfig gets a chance to land there
Diffstat (limited to 'classes/distutils-base.bbclass')
-rw-r--r--classes/distutils-base.bbclass15
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 \
+"