diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2016-02-18 14:41:10 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-02-20 14:45:14 +0100 |
commit | 7f8c441d96a61980d272eb7a2a7481e173286f72 (patch) | |
tree | afc7ffde9b0cc58a95a3f256731f548348ae809e /recipes-qt/examples/qtsmarthome_1.0.bb | |
parent | 2f265b3d887ca58bb03d44e1955348791bba8359 (diff) | |
download | meta-qt5-7f8c441d96a61980d272eb7a2a7481e173286f72.tar.gz |
examples: fix few thousands host-user-contaminated QA warnings
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes-qt/examples/qtsmarthome_1.0.bb')
-rw-r--r-- | recipes-qt/examples/qtsmarthome_1.0.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes-qt/examples/qtsmarthome_1.0.bb b/recipes-qt/examples/qtsmarthome_1.0.bb index 944c4dc2..da1bbdf3 100644 --- a/recipes-qt/examples/qtsmarthome_1.0.bb +++ b/recipes-qt/examples/qtsmarthome_1.0.bb | |||
@@ -17,9 +17,9 @@ require recipes-qt/qt5/qt5.inc | |||
17 | 17 | ||
18 | do_install() { | 18 | do_install() { |
19 | install -d ${D}${datadir}/${P} | 19 | install -d ${D}${datadir}/${P} |
20 | install -m 0755 ${B}/smarthome ${D}${datadir}/${P} | 20 | install -m 0755 ${B}/smarthome ${D}${datadir}/${P} |
21 | cp -a ${S}/qml ${D}${datadir}/${P} | 21 | cp -R --no-dereference --preserve=mode,links ${S}/qml ${D}${datadir}/${P} |
22 | cp -a ${S}/components ${D}${datadir}/${P} | 22 | cp -R --no-dereference --preserve=mode,links ${S}/components ${D}${datadir}/${P} |
23 | } | 23 | } |
24 | 24 | ||
25 | FILES_${PN}-dbg += "${datadir}/${P}/.debug" | 25 | FILES_${PN}-dbg += "${datadir}/${P}/.debug" |