summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2024-01-09 15:29:12 -0800
committerSteve Sakoman <steve@sakoman.com>2024-02-07 04:00:02 -1000
commit6d6ccbca0ce6b145224fa94d3c62a45e453c969f (patch)
tree1a60b9452263ca860290695c7d44cac72c6b2976 /meta
parent9724d9822c3a27b8bcecda4ba4005b5403bde442 (diff)
downloadpoky-6d6ccbca0ce6b145224fa94d3c62a45e453c969f.tar.gz
tcl: Fix prepending to run-ptest script
This ensures that string is prepended properly and eclosed in '' Fixes the ptest runs on musl (From OE-Core rev: 5f49d4c3f528c1e9a2884cc9cc8026b5d43517f9) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 7bb45591f9caa7ff6b065220927a26e8261e2866) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-devtools/tcltk/tcl_8.6.13.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/tcltk/tcl_8.6.13.bb b/meta/recipes-devtools/tcltk/tcl_8.6.13.bb
index b33a78e147..bb75353a5a 100644
--- a/meta/recipes-devtools/tcltk/tcl_8.6.13.bb
+++ b/meta/recipes-devtools/tcltk/tcl_8.6.13.bb
@@ -88,7 +88,7 @@ do_install_ptest() {
88 88
89do_install_ptest:append:libc-musl () { 89do_install_ptest:append:libc-musl () {
90 # Assumes locales other than provided by musl-locales 90 # Assumes locales other than provided by musl-locales
91 sed -i -e 's|SKIPPED_TESTS=|SKIPPED_TESTS="unixInit-3*"|' ${D}${PTEST_PATH}/run-ptest 91 sed -i -e "s|SKIPPED_TESTS='|SKIPPED_TESTS='unixInit-3* |" ${D}${PTEST_PATH}/run-ptest
92} 92}
93 93
94# Fix some paths that might be used by Tcl extensions 94# Fix some paths that might be used by Tcl extensions