blob: d631a5c3ff2265a709e7dfb57f37f12517507738 (
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 "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"
|