[oe-commits] [meta-openembedded] 20/33: openconnect: fix parallel compilation failure

git at git.openembedded.org git at git.openembedded.org
Thu Aug 24 14:23:43 UTC 2017


This is an automated email from the git hooks/post-receive script.

martin_jansa pushed a commit to branch master-next
in repository meta-openembedded.

commit 8f5ed1dc7b8c375b62e8448c90e0a15f8b85e24b
Author: Chen Qi <Qi.Chen at windriver.com>
AuthorDate: Wed Aug 23 18:08:43 2017 +0800

    openconnect: fix parallel compilation failure
    
    This patch solves the following error which appears now and then because of
    parallel building.
    
      ../git/main.c:78:21: fatal error: version.c: No such file or directory
    
    version.c is generated at build time. And it's needed by some objects. So
    it needs to be generated first to avoid compilation failure.
    
    This patch fix the problem by generating version.c first before building others.
    
    Signed-off-by: Chen Qi <Qi.Chen at windriver.com>
    Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
---
 meta-networking/recipes-connectivity/openconnect/openconnect_git.bb | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/meta-networking/recipes-connectivity/openconnect/openconnect_git.bb b/meta-networking/recipes-connectivity/openconnect/openconnect_git.bb
index 3a1f0f3..4242aa5 100644
--- a/meta-networking/recipes-connectivity/openconnect/openconnect_git.bb
+++ b/meta-networking/recipes-connectivity/openconnect/openconnect_git.bb
@@ -25,3 +25,7 @@ inherit autotools pkgconfig
 
 EXTRA_OECONF += "--with-vpnc-script=${SYSROOT_DESTDIR}${sysconfdir}/vpnc/vpnc-script \
                  --disable-static"
+
+do_compile_prepend() {
+    make version.c
+}

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list