summaryrefslogtreecommitdiffstats
path: root/meta-efl
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2016-02-25 17:37:00 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2016-03-04 09:06:22 +0100
commitdf7242fddb9048738c0cdfaf0c3c227bf78f3da7 (patch)
tree93d90103179618fe595aa26a7bfab1a0afd55418 /meta-efl
parent7396fc62068a41d2ad88cc03d0ca485279510d55 (diff)
downloadmeta-openembedded-df7242fddb9048738c0cdfaf0c3c227bf78f3da7.tar.gz
recipes: Replace "cp -a" with "cp -R --no-dereference --preserve=mode,links"
* Using "cp -a" leaks UID of user running the builds, causing many QA warnings. * See this thread for details: http://lists.openembedded.org/pipermail/openembedded-core/2015-November/112904.html Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-efl')
-rw-r--r--meta-efl/recipes-devtools/python/python-edbus.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-efl/recipes-devtools/python/python-edbus.inc b/meta-efl/recipes-devtools/python/python-edbus.inc
index 1d8098f60..3e72261e2 100644
--- a/meta-efl/recipes-devtools/python/python-edbus.inc
+++ b/meta-efl/recipes-devtools/python/python-edbus.inc
@@ -39,7 +39,7 @@ do_install_append() {
39 done 39 done
40 cd ${S} 40 cd ${S}
41 install -d ${D}${datadir}/${PN}/ 41 install -d ${D}${datadir}/${PN}/
42 cp -a examples ${D}${datadir}/${PN}/ 42 cp -R --no-dereference --preserve=mode,links -v examples ${D}${datadir}/${PN}/
43 find ${D}${datadir}/${PN}/examples -name ".svn" | xargs rm -rf 43 find ${D}${datadir}/${PN}/examples -name ".svn" | xargs rm -rf
44 fi 44 fi
45} 45}