aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qt5-ptest.inc
diff options
context:
space:
mode:
authorMingde (Matthew) Zeng <matthew.zeng@windriver.com>2020-05-08 00:58:26 -0400
committerMartin Jansa <Martin.Jansa@gmail.com>2020-05-11 17:35:20 +0200
commit0d4af49fe158217597b02582d2e971e77f88b272 (patch)
tree764774b9755147ef1463058cd72640215661ef54 /recipes-qt/qt5/qt5-ptest.inc
parentd2ff90b2861d6312dce6cbf20c5120676bcabfae (diff)
qt5-ptest: give rwx permission to user for all the test files
Otherwise, ptest will fail with numerous Permission Denied errors Signed-off-by: Mingde (Matthew) Zeng <matthew.zeng@windriver.com>
Diffstat (limited to 'recipes-qt/qt5/qt5-ptest.inc')
-rw-r--r--recipes-qt/qt5/qt5-ptest.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-qt/qt5/qt5-ptest.inc b/recipes-qt/qt5/qt5-ptest.inc
index 56efe106..f41e971a 100644
--- a/recipes-qt/qt5/qt5-ptest.inc
+++ b/recipes-qt/qt5/qt5-ptest.inc
@@ -16,7 +16,7 @@ fakeroot do_install_ptest() {
for var in ` find ${B}/tests/auto/ -name tst_*`; do
if [ -z ` echo ${var##*/} | grep '\.'` ]; then
echo ${var##*/} >> ${t}/tst_list
- install -m 0644 ${var} ${t}
+ install -m 0744 ${var} ${t}
fi
done
}