summaryrefslogtreecommitdiffstats
path: root/meta-python/recipes-devtools/python
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2022-03-10 13:25:20 +0000
committerTrevor Gamblin <trevor.gamblin@windriver.com>2022-03-11 08:48:38 -0500
commitf3bacf644ec838dec002cd5d42811575dd413f67 (patch)
tree4518ee4fcc7502d7a3c1ff1bf64a852c92a6b06e /meta-python/recipes-devtools/python
parent8ca5c4b0bce5aeeaabab61e0499e4c1042207387 (diff)
downloadmeta-openembedded-f3bacf644ec838dec002cd5d42811575dd413f67.tar.gz
python3-pycurl: fix DEPENDS
By assigning directly to DEPENDS the dependencies in setuptools3 are overwritten, so python3-setuptools-native is present to let the build succeed entirely through luck. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python/recipes-devtools/python')
-rw-r--r--meta-python/recipes-devtools/python/python3-pycurl_7.44.1.bb7
1 files changed, 2 insertions, 5 deletions
diff --git a/meta-python/recipes-devtools/python/python3-pycurl_7.44.1.bb b/meta-python/recipes-devtools/python/python3-pycurl_7.44.1.bb
index 0f1ae3caca..c9b3b71873 100644
--- a/meta-python/recipes-devtools/python/python3-pycurl_7.44.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pycurl_7.44.1.bb
@@ -14,9 +14,6 @@ LIC_FILES_CHKSUM = "file://COPYING-LGPL;md5=4fbd65380cdd255951079008b364516c \
14 14
15SRC_URI[sha256sum] = "5bcef4d988b74b99653602101e17d8401338d596b9234d263c728a0c3df003e8" 15SRC_URI[sha256sum] = "5bcef4d988b74b99653602101e17d8401338d596b9234d263c728a0c3df003e8"
16 16
17inherit pypi setuptools3 17DEPENDS = "curl"
18 18
19DEPENDS = "\ 19inherit pypi setuptools3
20 curl \
21 ${PYTHON_PN}\
22"