diff options
author | Mingde (Matthew) Zeng <matthew.zeng@windriver.com> | 2020-05-08 00:58:26 -0400 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2020-05-11 17:35:20 +0200 |
commit | 0d4af49fe158217597b02582d2e971e77f88b272 (patch) | |
tree | 764774b9755147ef1463058cd72640215661ef54 | |
parent | d2ff90b2861d6312dce6cbf20c5120676bcabfae (diff) | |
download | meta-qt5-0d4af49fe158217597b02582d2e971e77f88b272.tar.gz |
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>
-rw-r--r-- | recipes-qt/qt5/qt5-ptest.inc | 2 |
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() { | |||
16 | for var in ` find ${B}/tests/auto/ -name tst_*`; do | 16 | for var in ` find ${B}/tests/auto/ -name tst_*`; do |
17 | if [ -z ` echo ${var##*/} | grep '\.'` ]; then | 17 | if [ -z ` echo ${var##*/} | grep '\.'` ]; then |
18 | echo ${var##*/} >> ${t}/tst_list | 18 | echo ${var##*/} >> ${t}/tst_list |
19 | install -m 0644 ${var} ${t} | 19 | install -m 0744 ${var} ${t} |
20 | fi | 20 | fi |
21 | done | 21 | done |
22 | } | 22 | } |