From df7242fddb9048738c0cdfaf0c3c227bf78f3da7 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Thu, 25 Feb 2016 17:37:00 +0100 Subject: 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 --- meta-efl/recipes-devtools/python/python-edbus.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-efl') diff --git a/meta-efl/recipes-devtools/python/python-edbus.inc b/meta-efl/recipes-devtools/python/python-edbus.inc index 1d8098f60d..3e72261e22 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() { done cd ${S} install -d ${D}${datadir}/${PN}/ - cp -a examples ${D}${datadir}/${PN}/ + cp -R --no-dereference --preserve=mode,links -v examples ${D}${datadir}/${PN}/ find ${D}${datadir}/${PN}/examples -name ".svn" | xargs rm -rf fi } -- cgit 1.2.3-korg