aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-qt
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 21:59:59 +0200
commitfdd19517e17240b0b61765bd02fc483a1bde986f (patch)
treea0df5764c01467cd151400e00e233fe38d1faa5e /recipes-qt
parente52ce4223b17316da59bf7e9c7979ab0ea1cf7cd (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')
-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
}