summaryrefslogtreecommitdiff
path: root/classes/python-dir.bbclass
blob: 7b0b80973a579325702ad6067b57d7d886339c8c (plain)
1
2
3
4
5
6
7
8
9
10
11
def python_dir(d):
	import os, bb
	staging_incdir = bb.data.getVar( "STAGING_INCDIR", d, 1 )
	for majmin in "2.6 2.5 2.4 2.3".split():
		if os.path.exists( "%s/python%s" % ( staging_incdir, majmin ) ): return "python%s" % majmin
	if not "python-native" in bb.data.getVar( "DEPENDS", d, 1 ).split():
		raise Exception("No Python in STAGING_INCDIR. Forgot to build python-native?")
	return "INVALID"

PYTHON_DIR = "${@python_dir(d)}"
PYTHON_SITEPACKAGES_DIR = "${libdir}/${PYTHON_DIR}/site-packages"
cvs and svn PVs to x.x.x+cvsYYYY...Richard Purdie1 2006-01-04Revert the changes from revisions 65af73a95a851d2e8c3cf2f523f1acc488be0208, 2...Richard Purdie1 2006-01-02autotooled packages: remove custom do_stagePhilipp Zabel1 2005-10-02lots of files: update Phil Blundell's email addressKoen Kooi1 2005-06-30import clean BK tree at cset 1.3670Koen Kooi1 2005-01-25xdemineur_2.1.1.bb:Greg Gilbert1 2004-12-09Merge oe-devel@oe-devel.bkbits.net:openembeddedChris Larson1