From bdff28d9a7863494b2a41f54de4e3fe0a7e29470 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 Dropped Lua patch as no ptest support exists in jethro Signed-off-by: Martin Jansa Signed-off-by: Armin Kuster Conflicts: meta-oe/recipes-devtools/lua/lua_5.3.1.bb --- meta-networking/recipes-support/cim-schema/cim-schema-final_2.40.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-networking/recipes-support/cim-schema/cim-schema-final_2.40.0.bb') diff --git a/meta-networking/recipes-support/cim-schema/cim-schema-final_2.40.0.bb b/meta-networking/recipes-support/cim-schema/cim-schema-final_2.40.0.bb index 7ab9c4d49..567538441 100644 --- a/meta-networking/recipes-support/cim-schema/cim-schema-final_2.40.0.bb +++ b/meta-networking/recipes-support/cim-schema/cim-schema-final_2.40.0.bb @@ -21,7 +21,7 @@ do_install() { install -d -m 0755 ${D}${datadir}/doc/cim-schema-${PV} install -m 644 ${WORKDIR}/LICENSE ${D}${datadir}/doc/cim-schema-${PV} - cp -a ${S}/* ${D}${datadir}/mof/cimv${PV}/ + cp -R --no-dereference --preserve=mode,links -v ${S}/* ${D}${datadir}/mof/cimv${PV}/ chown -R root:root ${D}${datadir}/mof/cimv${PV}/ for i in `find ${D}${datadir}/mof/cimv${PV} -name "*.mof"`; do sed -i -e 's/\r//g' $i -- cgit v1.2.3-54-g00ecf