diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-08-19 10:32:11 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-08-19 10:46:13 -0700 |
commit | 107d11c38fd45aaff900a9aeee9e70f8e6c679c1 (patch) | |
tree | 1453583f298728cfab25f4a61aea6e1ffb06c96a | |
parent | b320682bf5cbc280fc916725fb8a2f4ea38eeef4 (diff) | |
download | meta-openembedded-107d11c38fd45aaff900a9aeee9e70f8e6c679c1.tar.gz |
librelp: Fix ptest installs to work with dash
Suggested-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/rsyslog/librelp_1.11.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/rsyslog/librelp_1.11.0.bb b/meta-oe/recipes-extended/rsyslog/librelp_1.11.0.bb index 705452734a..9d949c6303 100644 --- a/meta-oe/recipes-extended/rsyslog/librelp_1.11.0.bb +++ b/meta-oe/recipes-extended/rsyslog/librelp_1.11.0.bb | |||
@@ -41,7 +41,7 @@ do_install_ptest() { | |||
41 | install -d ${D}${PTEST_PATH}/${TESTDIR} | 41 | install -d ${D}${PTEST_PATH}/${TESTDIR} |
42 | 42 | ||
43 | # copy source tests/*.sh and python scripts | 43 | # copy source tests/*.sh and python scripts |
44 | cp -f ${S}/${TESTDIR}/*.{sh,py} ${D}${PTEST_PATH}/${TESTDIR} | 44 | cp -f ${S}/${TESTDIR}/*.sh ${S}/${TESTDIR}/*.py ${D}${PTEST_PATH}/${TESTDIR} |
45 | # install data files needed by the test scripts on the target | 45 | # install data files needed by the test scripts on the target |
46 | cp -f ${S}/${TESTDIR}/*.supp ${D}${PTEST_PATH}/${TESTDIR} | 46 | cp -f ${S}/${TESTDIR}/*.supp ${D}${PTEST_PATH}/${TESTDIR} |
47 | cp -rf ${S}/${TESTDIR}/tls-certs ${D}${PTEST_PATH}/${TESTDIR} | 47 | cp -rf ${S}/${TESTDIR}/tls-certs ${D}${PTEST_PATH}/${TESTDIR} |