summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools/python/python-ipaddr_2.1.11.bb
diff options
context:
space:
mode:
authorMark Asselstine <mark.asselstine@windriver.com>2014-04-14 23:44:25 -0400
committerBruce Ashfield <bruce.ashfield@windriver.com>2014-04-15 19:48:37 -0400
commit7c9a856228d33783f28d3461115a64eaaefb043f (patch)
tree09c2f5475bfe4d77cb0aa6a2a72ad3d6260514b2 /meta-openstack/recipes-devtools/python/python-ipaddr_2.1.11.bb
parent32e4536d9264e5a6a84ad75764e70ab1955386e1 (diff)
downloadmeta-cloud-services-7c9a856228d33783f28d3461115a64eaaefb043f.tar.gz
python-ipaddr: setup.py for this pkg uses distutils
Examining the setup.py we find "from distutils.core import setup" we therefor need to inherit distutils, not setuptools. Having the wrong inherit was under certain circumstances causing the do_install to fail with: | error: option --single-version-externally-managed not recognized | ERROR: python setup.py install execution failed. Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools/python/python-ipaddr_2.1.11.bb')
-rw-r--r--meta-openstack/recipes-devtools/python/python-ipaddr_2.1.11.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-ipaddr_2.1.11.bb b/meta-openstack/recipes-devtools/python/python-ipaddr_2.1.11.bb
index b589053..d0d39f6 100644
--- a/meta-openstack/recipes-devtools/python/python-ipaddr_2.1.11.bb
+++ b/meta-openstack/recipes-devtools/python/python-ipaddr_2.1.11.bb
@@ -14,7 +14,7 @@ SRC_URI[sha256sum] = "1b555b8a8800134fdafe32b7d0cb52f5bdbfdd093707c3dd484c5ea59f
14 14
15S = "${WORKDIR}/${SRCNAME}-${PV}" 15S = "${WORKDIR}/${SRCNAME}-${PV}"
16 16
17inherit setuptools 17inherit distutils
18 18
19DEPENDS += " \ 19DEPENDS += " \
20 python-pip \ 20 python-pip \