mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
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>
5 lines
216 B
Plaintext
5 lines
216 B
Plaintext
PYTHON_BASEVERSION ?= "2.7"
|
|
PYTHON_DIR = "python${PYTHON_BASEVERSION}"
|
|
PYTHON_PN = "python${@'' if '${PYTHON_BASEVERSION}'.startswith('2') else '3'}"
|
|
PYTHON_SITEPACKAGES_DIR = "${libdir}/${PYTHON_DIR}/site-packages"
|