summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2021-02-28 16:37:01 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-03-02 14:15:33 +0000
commit4d1f48f6d90734a99a52996f53f429f1380d3e71 (patch)
tree2514e776246282521bfa1681f88ade756692e180 /meta/recipes-connectivity
parentc621b08c82d8be676e589ebd596836c22394e38b (diff)
downloadpoky-4d1f48f6d90734a99a52996f53f429f1380d3e71.tar.gz
openssl: address ptest failures caused by perl 5.32.1
For some reason the new perl no longer has . in list of directories searched in 'require', and so the file needs to be copied where perl can find it. (From OE-Core rev: 2ae879ddb72bd316e49a8200e99887dadb02b3dc) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity')
-rw-r--r--meta/recipes-connectivity/openssl/openssl_1.1.1j.bb4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssl/openssl_1.1.1j.bb b/meta/recipes-connectivity/openssl/openssl_1.1.1j.bb
index c431f22643..181790e6ab 100644
--- a/meta/recipes-connectivity/openssl/openssl_1.1.1j.bb
+++ b/meta/recipes-connectivity/openssl/openssl_1.1.1j.bb
@@ -199,6 +199,10 @@ do_install_ptest () {
199 199
200 install -d ${D}${PTEST_PATH}/engines 200 install -d ${D}${PTEST_PATH}/engines
201 install -m755 ${B}/engines/ossltest.so ${D}${PTEST_PATH}/engines 201 install -m755 ${B}/engines/ossltest.so ${D}${PTEST_PATH}/engines
202
203 # seems to be needed with perl 5.32.1
204 install -d ${D}${PTEST_PATH}/util/perl/recipes
205 cp ${D}${PTEST_PATH}/test/recipes/tconversion.pl ${D}${PTEST_PATH}/util/perl/recipes/
202} 206}
203 207
204# Add the openssl.cnf file to the openssl-conf package. Make the libcrypto 208# Add the openssl.cnf file to the openssl-conf package. Make the libcrypto