diff options
author | Lei Maohui <leimaohui@cn.fujitsu.com> | 2018-05-11 10:03:04 -0700 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2018-05-24 16:08:35 -0400 |
commit | f9951b9263e1bb996daa5f2133359d761366e414 (patch) | |
tree | de650df8ad579697da3c087008281320db543165 | |
parent | a1050805598d663e1ae0cf562a72109e77ecfc5c (diff) | |
download | meta-cloud-services-f9951b9263e1bb996daa5f2133359d761366e414.tar.gz |
python-debtcollector Fix buid error as following:
"distutils.errors.DistutilsError: Could not find suitable distribution for Requirement.parse('pbr>=2.0.0')"
Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
-rw-r--r-- | meta-openstack/recipes-devtools/python/python-debtcollector_1.17.1.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-debtcollector_1.17.1.bb b/meta-openstack/recipes-devtools/python/python-debtcollector_1.17.1.bb index 8d74ace..52b1319 100644 --- a/meta-openstack/recipes-devtools/python/python-debtcollector_1.17.1.bb +++ b/meta-openstack/recipes-devtools/python/python-debtcollector_1.17.1.bb | |||
@@ -14,6 +14,11 @@ DEPENDS += " \ | |||
14 | python-pbr \ | 14 | python-pbr \ |
15 | " | 15 | " |
16 | 16 | ||
17 | # Satisfy setup.py 'setup_requires' | ||
18 | DEPENDS += " \ | ||
19 | python-pbr-native \ | ||
20 | " | ||
21 | |||
17 | # RDEPENDS_default: | 22 | # RDEPENDS_default: |
18 | RDEPENDS_${PN} += " \ | 23 | RDEPENDS_${PN} += " \ |
19 | python-pbr \ | 24 | python-pbr \ |