diff options
| author | Khem Raj <raj.khem@gmail.com> | 2024-01-09 15:29:12 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-01-12 11:54:05 +0000 |
| commit | f71b260094fda2068960f70aafd74798f429a2d5 (patch) | |
| tree | 80200d5f8b4e05745b55a87ca14dffba33a94c5e | |
| parent | 79431f5ae35ee1d0eeab8143d5537d627b277f92 (diff) | |
| download | poky-f71b260094fda2068960f70aafd74798f429a2d5.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: 7bb45591f9caa7ff6b065220927a26e8261e2866)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-devtools/tcltk/tcl_8.6.13.bb | 2 |
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 | ||
| 89 | do_install_ptest:append:libc-musl () { | 89 | do_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 |
