summaryrefslogtreecommitdiffstats
path: root/meta/classes/python-dir.bbclass
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2013-03-09 22:03:59 -0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-02-02 22:37:38 +0000
commit8314590f099ec3e0592355b192ef80a2e71daac0 (patch)
treebedb57ee3e0ab89f8c236bdef3bbf69ca7cfeabd /meta/classes/python-dir.bbclass
parent867b1eee25344d0b891dc539c6eb01f527165ae2 (diff)
downloadpoky-8314590f099ec3e0592355b192ef80a2e71daac0.tar.gz
classes/distutils: Introduce PYTHON_PN
This is needed to accomodate python3 alongside python2 (From OE-Core rev: ae931c2cf9e48e1fb74b4b727dbf668ea880023f) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/python-dir.bbclass')
-rw-r--r--meta/classes/python-dir.bbclass1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/python-dir.bbclass b/meta/classes/python-dir.bbclass
index 0b6a33c2ed..b4b5ab0eab 100644
--- a/meta/classes/python-dir.bbclass
+++ b/meta/classes/python-dir.bbclass
@@ -1,3 +1,4 @@
1PYTHON_BASEVERSION ?= "2.7" 1PYTHON_BASEVERSION ?= "2.7"
2PYTHON_DIR = "python${PYTHON_BASEVERSION}" 2PYTHON_DIR = "python${PYTHON_BASEVERSION}"
3PYTHON_PN = "python${@'' if '${PYTHON_BASEVERSION}'.startswith('2') else '3'}"
3PYTHON_SITEPACKAGES_DIR = "${libdir}/${PYTHON_DIR}/site-packages" 4PYTHON_SITEPACKAGES_DIR = "${libdir}/${PYTHON_DIR}/site-packages"