diff options
author | Ross Burton <ross.burton@intel.com> | 2018-07-06 15:54:55 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-07-06 22:54:56 +0100 |
commit | 87e38f0306400609aeac92bc13fd6f41d61e6271 (patch) | |
tree | a5f5c8963b31205f721a822de914ca5df37ef538 | |
parent | 23734432a24da77aa838ad4bdcbcc294cde08348 (diff) | |
download | openembedded-core-87e38f0306400609aeac92bc13fd6f41d61e6271.tar.gz openembedded-core-87e38f0306400609aeac92bc13fd6f41d61e6271.tar.bz2 openembedded-core-87e38f0306400609aeac92bc13fd6f41d61e6271.zip |
setuptools.bbclass: depend on python-setuptools
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.
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/classes/setuptools.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/setuptools.bbclass b/meta/classes/setuptools.bbclass index 56343b1c73..157ef63b68 100644 --- a/meta/classes/setuptools.bbclass +++ b/meta/classes/setuptools.bbclass @@ -1,6 +1,6 @@ inherit distutils -DEPENDS += "python-distribute-native" +DEPENDS += "python-setuptools-native" DISTUTILS_INSTALL_ARGS = "--root=${D} \ --prefix=${prefix} \ |