diff options
| author | Trevor Gamblin <trevor.gamblin@windriver.com> | 2021-08-26 11:19:44 -0400 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-08-27 13:08:27 -0700 |
| commit | 1b358be2b88eb78b557fbb2479321c2fdcbac9e0 (patch) | |
| tree | 0978e6a0011f4bc71050d167127d7e4aba6be9c0 /meta-python | |
| parent | 8d62db72656a76c198b43783dfbe530c6bdea382 (diff) | |
| download | meta-openembedded-1b358be2b88eb78b557fbb2479321c2fdcbac9e0.tar.gz | |
python3-license-expression: add ptest artifacts
The python3-license-expression ptest is failing because it requires the
contents of the src/ directory from the repo/tarball. Copy this content
to the image when installing the ptest so that it has what it needs.
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-license-expression_21.6.14.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-python/recipes-devtools/python/python3-license-expression_21.6.14.bb b/meta-python/recipes-devtools/python/python3-license-expression_21.6.14.bb index 2ed5d91709..efa8854411 100644 --- a/meta-python/recipes-devtools/python/python3-license-expression_21.6.14.bb +++ b/meta-python/recipes-devtools/python/python3-license-expression_21.6.14.bb | |||
| @@ -28,6 +28,8 @@ RDEPENDS:${PN}-ptest += " \ | |||
| 28 | " | 28 | " |
| 29 | 29 | ||
| 30 | do_install_ptest() { | 30 | do_install_ptest() { |
| 31 | install -d ${D}${PTEST_PATH}/tests | 31 | install -d ${D}${PTEST_PATH}/tests |
| 32 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | 32 | install -d ${D}${PTEST_PATH}/src |
| 33 | cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/ | ||
| 34 | cp -rf ${S}/src/* ${D}${PTEST_PATH}/src/ | ||
| 33 | } | 35 | } |
