summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-devtools/fmt/fmt/run-ptest2
-rw-r--r--meta/recipes-devtools/fmt/fmt_11.2.0.bb2
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/fmt/fmt/run-ptest b/meta/recipes-devtools/fmt/fmt/run-ptest
index a069e4543c..ba1e9fc51f 100644
--- a/meta/recipes-devtools/fmt/fmt/run-ptest
+++ b/meta/recipes-devtools/fmt/fmt/run-ptest
@@ -1,5 +1,5 @@
1#!/bin/sh 1#!/bin/sh
2 2
3for t in `ls ./*-test`; do 3for t in *-test; do
4 ./$t && echo PASS: $t || echo FAIL: $t 4 ./$t && echo PASS: $t || echo FAIL: $t
5done 5done
diff --git a/meta/recipes-devtools/fmt/fmt_11.2.0.bb b/meta/recipes-devtools/fmt/fmt_11.2.0.bb
index 06ba523ada..133e1ae77d 100644
--- a/meta/recipes-devtools/fmt/fmt_11.2.0.bb
+++ b/meta/recipes-devtools/fmt/fmt_11.2.0.bb
@@ -17,7 +17,7 @@ EXTRA_OECMAKE += "-DBUILD_SHARED_LIBS=ON"
17EXTRA_OECMAKE += "${@bb.utils.contains('PTEST_ENABLED', '1', '-DFMT_TEST=ON', '', d)}" 17EXTRA_OECMAKE += "${@bb.utils.contains('PTEST_ENABLED', '1', '-DFMT_TEST=ON', '', d)}"
18 18
19do_install_ptest(){ 19do_install_ptest(){
20 for t in `ls ${B}/bin/*-test`; do 20 for t in ${B}/bin/*-test; do
21 install $t ${D}${PTEST_PATH}/ 21 install $t ${D}${PTEST_PATH}/
22 done 22 done
23} 23}