summaryrefslogtreecommitdiffstats
path: root/meta/classes/distutils-base.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard@rex.(none)>2009-12-05 23:18:02 +0000
committerRichard Purdie <richard@rex.(none)>2009-12-05 23:18:02 +0000
commit288e62a22115a32effc65efa7c2d6ef2867d0b91 (patch)
treee316e1034e26300b44f7cdfc297b73727f3242f3 /meta/classes/distutils-base.bbclass
parentc7d4ad8e9dce735cf52caaf38afe2392301b2536 (diff)
downloadpoky-288e62a22115a32effc65efa7c2d6ef2867d0b91.tar.gz
distutils: Sync with OE.dev
Signed-off-by: Richard Purdie <richard@rex.(none)>
Diffstat (limited to 'meta/classes/distutils-base.bbclass')
-rw-r--r--meta/classes/distutils-base.bbclass14
1 files changed, 1 insertions, 13 deletions
diff --git a/meta/classes/distutils-base.bbclass b/meta/classes/distutils-base.bbclass
index 5d6d9981e0..2e151ded38 100644
--- a/meta/classes/distutils-base.bbclass
+++ b/meta/classes/distutils-base.bbclass
@@ -1,17 +1,5 @@
1EXTRA_OEMAKE = ""
2DEPENDS += "${@["python-native python", ""][(bb.data.getVar('PACKAGES', d, 1) == '')]}" 1DEPENDS += "${@["python-native python", ""][(bb.data.getVar('PACKAGES', d, 1) == '')]}"
3RDEPENDS += "python-core" 2RDEPENDS += "python-core"
4 3
5def python_dir(d): 4inherit distutils-common-base
6 staging_incdir = bb.data.getVar( "STAGING_INCDIR", d, 1 )
7 if os.path.exists( "%s/python2.5" % staging_incdir ): return "python2.5"
8 if os.path.exists( "%s/python2.4" % staging_incdir ): return "python2.4"
9 if os.path.exists( "%s/python2.3" % staging_incdir ): return "python2.3"
10 raise "No Python in STAGING_INCDIR. Forgot to build python-native ?"
11
12PYTHON_DIR = "${@python_dir(d)}"
13FILES_${PN} = "${bindir}/* ${libdir}/* ${libdir}/${PYTHON_DIR}/*"
14FILES_${PN}-dbg = "${libdir}/${PYTHON_DIR}/site-packages/.debug \
15 ${libdir}/${PYTHON_DIR}/site-packages/*/.debug \
16 ${libdir}/${PYTHON_DIR}/site-packages/*/*/.debug"
17 5