[oe-commits] [meta-openembedded] 56/74: zeromq: Fixup do_install_ptest_base failure

git at git.openembedded.org git at git.openembedded.org
Mon Apr 9 00:13:11 UTC 2018


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

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

commit e013a7e77ec2a808fc80498dacbd724062caaad3
Author: Mark Asselstine <mark.asselstine at windriver.com>
AuthorDate: Mon Apr 2 11:05:42 2018 -0700

    zeromq: Fixup do_install_ptest_base failure
    
    The following error is being hit:
    
    | install: cannot stat
    |  '.../tmp/work/core2-64-poky-linux/zeromq/4.2.3-r0/build/.libs/test_*':
    |  No such file or directory
    
    This is being hit in the 'state of the world' builds (see [oe] State
    of the world, 2018-03-19). The uprev to v4.2.3 (commit 50eb3504c83c)
    did not take into account that the location of the tests changed in
    the 'build' directory as part of the new release. Updating to use the
    proper directory.
    
    Signed-off-by: Mark Asselstine <mark.asselstine at windriver.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta-oe/recipes-connectivity/zeromq/zeromq_4.2.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-oe/recipes-connectivity/zeromq/zeromq_4.2.3.bb b/meta-oe/recipes-connectivity/zeromq/zeromq_4.2.3.bb
index 71d7e7c..6cad335 100644
--- a/meta-oe/recipes-connectivity/zeromq/zeromq_4.2.3.bb
+++ b/meta-oe/recipes-connectivity/zeromq/zeromq_4.2.3.bb
@@ -28,5 +28,5 @@ do_compile_ptest () {
 
 do_install_ptest () {
     install -d ${D}${PTEST_PATH}/tests
-    install -m 0755 ${B}/.libs/test_* ${D}${PTEST_PATH}/tests
+    install -m 0755 ${B}/tests/.libs/test_* ${D}${PTEST_PATH}/tests
 }

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


More information about the Openembedded-commits mailing list