mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
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
This commit is contained in:
committed by
Armin Kuster
parent
9a0ee11cfb
commit
bdff28d9a7
@@ -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
|
||||
|
||||
@@ -19,7 +19,7 @@ do_install() {
|
||||
install -d ${D}${libdir}
|
||||
install -m 0644 libmatroska.a ${D}${libdir}
|
||||
install -m 0755 libmatroska.so.* ${D}${libdir}
|
||||
cp -a libmatroska.so ${D}${libdir}
|
||||
cp -R --no-dereference --preserve=mode,links -v libmatroska.so ${D}${libdir}
|
||||
|
||||
install -d ${D}${includedir}/matroska
|
||||
for i in ../../matroska/*.h; do
|
||||
|
||||
Reference in New Issue
Block a user