diff options
author | Mark Asselstine <mark.asselstine@windriver.com> | 2018-04-02 11:05:42 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-04-08 17:00:06 -0700 |
commit | e0a248c497189fea85340002baef0f81ae0671b0 (patch) | |
tree | d6849930c255210f476c0de92bb294a620c3e534 /meta-oe/recipes-connectivity | |
parent | 3aa3c374ca7cd0850bdede6a404936737abb4068 (diff) | |
download | meta-openembedded-e0a248c497189fea85340002baef0f81ae0671b0.tar.gz |
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@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-connectivity')
-rw-r--r-- | meta-oe/recipes-connectivity/zeromq/zeromq_4.2.3.bb | 2 |
1 files changed, 1 insertions, 1 deletions
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 71d7e7cbf..6cad3353d 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 () { | |||
28 | 28 | ||
29 | do_install_ptest () { | 29 | do_install_ptest () { |
30 | install -d ${D}${PTEST_PATH}/tests | 30 | install -d ${D}${PTEST_PATH}/tests |
31 | install -m 0755 ${B}/.libs/test_* ${D}${PTEST_PATH}/tests | 31 | install -m 0755 ${B}/tests/.libs/test_* ${D}${PTEST_PATH}/tests |
32 | } | 32 | } |