diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2016-02-22 13:54:21 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-02-25 17:47:24 +0100 |
commit | ed324ea2ecd6b3ded92c983e3e724574b5a8cdc2 (patch) | |
tree | b22ee26ca8c0baaf2c0515e1c2e3eae3c38c01d3 | |
parent | 47c153bdb8f04575ecf185a5e4e1019c84e30423 (diff) | |
download | meta-openembedded-ed324ea2ecd6b3ded92c983e3e724574b5a8cdc2.tar.gz |
libtinyxml2: drop trailing continuation character in do_compile
* with newer bitbake it parses it differently and task fails:
http://errors.yoctoproject.org/Errors/Details/35147/
DEBUG: Executing shell function do_compile
/home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/libtinyxml2/2.2.0+gitAUTOINC+d211bb1351-r0/temp/run.do_compile.21186: 118: /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/libtinyxml2/2.2.0+gitAUTOINC+d211bb1351-r0/temp/run.do_compile.21186: Syntax error: end of file unexpected (expecting "}")
WARNING: exit code 2 from a shell command.
ERROR: Function failed: do_compile (log file is located at /home/jenkins/oe/world/shr-core/tmp-glibc/work/armv5te-oe-linux-gnueabi/libtinyxml2/2.2.0+gitAUTOINC+d211bb1351-r0/temp/log.do_compile.21186)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/libtinyxml2/libtinyxml2_git.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta-oe/recipes-support/libtinyxml2/libtinyxml2_git.bb b/meta-oe/recipes-support/libtinyxml2/libtinyxml2_git.bb index 1d3cffd77..6ca6f7cbf 100644 --- a/meta-oe/recipes-support/libtinyxml2/libtinyxml2_git.bb +++ b/meta-oe/recipes-support/libtinyxml2/libtinyxml2_git.bb | |||
@@ -21,8 +21,7 @@ do_compile() { | |||
21 | -Wl,-soname,libtinyxml2.so.${PV} \ | 21 | -Wl,-soname,libtinyxml2.so.${PV} \ |
22 | -o libtinyxml2.so.${PV} \ | 22 | -o libtinyxml2.so.${PV} \ |
23 | ${LDFLAGS} \ | 23 | ${LDFLAGS} \ |
24 | tinyxml2.o \ | 24 | tinyxml2.o |
25 | |||
26 | } | 25 | } |
27 | 26 | ||
28 | do_install() { | 27 | do_install() { |