aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@googlemail.com>2015-10-28 11:02:02 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2015-11-02 14:59:26 +0100
commit9ec9b654b30708859ff730b65964631ebd7e4179 (patch)
treef30d48a36d7d1c86b100b92a20db12a924faf42e
parenta87a492492ffb8198e7b360b19266ecee271e68d (diff)
downloadmeta-python2-9ec9b654b30708859ff730b65964631ebd7e4179.tar.gz
python-lxml: do not overwrite inherited DEPENDS
python-lxml recipe inherits setuptools3 and after that includes python-lxml.inc. In the current situation DEPENDS inherited by setuptools3-tree are overwritten causing: DEBUG: Executing shell function do_compile /home/superandy/tmp/oe-core-glibc/work/x86_64-linux/python3-lxml-native/3.4.4-r0/temp/run.do_compile.30454: line 118: /home/superandy/tmp/oe-core-glibc/sysroots/x86_64-linux/usr/bin/python3-native/python3: No such file or directory ERROR: python3 setup.py build_ext execution failed. WARNING: /home/superandy/tmp/oe-core-glibc/work/x86_64-linux/python3-lxml-native/3.4.4-r0/temp/run.do_compile.30454:1 exit 1 from exit 1 ERROR: Function failed: do_compile (log file is located at /home/superandy/tmp/oe-core-glibc/work/x86_64-linux/python3-lxml-native/3.4.4-r0/temp/log.do_compile.30454) (From meta-openembedded commit: db539ce16e7d34bf2c71675d1417b7f7172e7e03) Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Tim Orling <ticotimo@gmail.com>
-rw-r--r--recipes-devtools/python/python-lxml.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-devtools/python/python-lxml.inc b/recipes-devtools/python/python-lxml.inc
index 8ca8f41..7a596c1 100644
--- a/recipes-devtools/python/python-lxml.inc
+++ b/recipes-devtools/python/python-lxml.inc
@@ -6,7 +6,7 @@ LICENSE = "BSD"
LIC_FILES_CHKSUM = "file://LICENSES.txt;md5=f9f1dc24f720c143c2240df41fe5073b"
SRCNAME = "lxml"
-DEPENDS = "libxml2 libxslt"
+DEPENDS += "libxml2 libxslt"
SRC_URI = "http://pypi.python.org/packages/source/l/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"