summaryrefslogtreecommitdiffstats
path: root/meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2016-02-25 17:37:00 +0100
committerArmin Kuster <akuster808@gmail.com>2016-04-17 13:06:14 -0700
commitbdff28d9a7863494b2a41f54de4e3fe0a7e29470 (patch)
treef35f1a117f1f7bd0efcbccc6d5910a1491597b66 /meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb
parent9a0ee11cfbfcc831902ba8c57d9aad8169c88c9e (diff)
downloadmeta-openembedded-bdff28d9a7863494b2a41f54de4e3fe0a7e29470.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 Dropped Lua patch as no ptest support exists in jethro Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Conflicts: meta-oe/recipes-devtools/lua/lua_5.3.1.bb
Diffstat (limited to 'meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb')
-rw-r--r--meta-multimedia/recipes-mkv/libebml/libebml_1.3.0.bb2
1 files changed, 1 insertions, 1 deletions
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() {
17 install -d ${D}${libdir} 17 install -d ${D}${libdir}
18 install -m 0644 libebml.a ${D}${libdir} 18 install -m 0644 libebml.a ${D}${libdir}
19 install -m 0755 libebml.so.* ${D}${libdir} 19 install -m 0755 libebml.so.* ${D}${libdir}
20 cp -a libebml.so ${D}${libdir} 20 cp -R --no-dereference --preserve=mode,links -v libebml.so ${D}${libdir}
21 21
22 install -d ${D}${includedir}/ebml 22 install -d ${D}${includedir}/ebml
23 for i in ../../ebml/*.h; do 23 for i in ../../ebml/*.h; do