mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 00:38:45 +01:00
python-distribute is obsolete and is now simply a PROVIDES of python-setuptools, so use the right name. The identical change for setuptools3.bbclass was done in 2015 in 8922e60. (From OE-Core rev: 87e38f0306400609aeac92bc13fd6f41d61e6271) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
9 lines
201 B
Plaintext
9 lines
201 B
Plaintext
inherit distutils
|
|
|
|
DEPENDS += "python-setuptools-native"
|
|
|
|
DISTUTILS_INSTALL_ARGS = "--root=${D} \
|
|
--prefix=${prefix} \
|
|
--install-lib=${PYTHON_SITEPACKAGES_DIR} \
|
|
--install-data=${datadir}"
|