diff options
author | Richard Purdie <richard@rex.(none)> | 2009-12-05 23:18:02 +0000 |
---|---|---|
committer | Richard Purdie <richard@rex.(none)> | 2009-12-05 23:18:02 +0000 |
commit | 288e62a22115a32effc65efa7c2d6ef2867d0b91 (patch) | |
tree | e316e1034e26300b44f7cdfc297b73727f3242f3 /meta/classes/distutils-base.bbclass | |
parent | c7d4ad8e9dce735cf52caaf38afe2392301b2536 (diff) | |
download | poky-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.bbclass | 14 |
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 @@ | |||
1 | EXTRA_OEMAKE = "" | ||
2 | DEPENDS += "${@["python-native python", ""][(bb.data.getVar('PACKAGES', d, 1) == '')]}" | 1 | DEPENDS += "${@["python-native python", ""][(bb.data.getVar('PACKAGES', d, 1) == '')]}" |
3 | RDEPENDS += "python-core" | 2 | RDEPENDS += "python-core" |
4 | 3 | ||
5 | def python_dir(d): | 4 | inherit 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 | |||
12 | PYTHON_DIR = "${@python_dir(d)}" | ||
13 | FILES_${PN} = "${bindir}/* ${libdir}/* ${libdir}/${PYTHON_DIR}/*" | ||
14 | FILES_${PN}-dbg = "${libdir}/${PYTHON_DIR}/site-packages/.debug \ | ||
15 | ${libdir}/${PYTHON_DIR}/site-packages/*/.debug \ | ||
16 | ${libdir}/${PYTHON_DIR}/site-packages/*/*/.debug" | ||
17 | 5 | ||