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-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb') diff --git a/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb b/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb index 877e176b8..9a429c604 100644 --- a/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb +++ b/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb @@ -17,7 +17,7 @@ do_install() { install -d ${D}${libdir} install -m 0644 libebml.a ${D}${libdir} install -m 0755 libebml.so.* ${D}${libdir} - cp -a libebml.so ${D}${libdir} + cp -R --no-dereference --preserve=mode,links -v libebml.so ${D}${libdir} install -d ${D}${includedir}/ebml for i in ../../ebml/*.h; do -- cgit v1.2.3-54-g00ecf