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:55:02 +0100 |
commit | b11fc28a1c34760f33f6ba1083afb71f28a4130c (patch) | |
tree | e7b09f510b9279561182fda3d6d6999427d15545 /meta/classes/setuptools.bbclass | |
parent | 1276f1755b3b444b209e19b40b8b0fc85ff9be5d (diff) | |
download | poky-b11fc28a1c34760f33f6ba1083afb71f28a4130c.tar.gz |
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.
(From OE-Core rev: 87e38f0306400609aeac92bc13fd6f41d61e6271)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/setuptools.bbclass')
-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 @@ | |||
1 | inherit distutils | 1 | inherit distutils |
2 | 2 | ||
3 | DEPENDS += "python-distribute-native" | 3 | DEPENDS += "python-setuptools-native" |
4 | 4 | ||
5 | DISTUTILS_INSTALL_ARGS = "--root=${D} \ | 5 | DISTUTILS_INSTALL_ARGS = "--root=${D} \ |
6 | --prefix=${prefix} \ | 6 | --prefix=${prefix} \ |