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-webserver/recipes-php/phpmyadmin/phpmyadmin_4.5.0.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.5.0.2.bb') diff --git a/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.5.0.2.bb b/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.5.0.2.bb index b8faf1273..ac321857b 100644 --- a/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.5.0.2.bb +++ b/meta-webserver/recipes-php/phpmyadmin/phpmyadmin_4.5.0.2.bb @@ -20,7 +20,7 @@ inherit allarch do_install() { install -d ${D}${datadir}/${BPN} - cp -a * ${D}${datadir}/${BPN} + cp -R --no-dereference --preserve=mode,links -v * ${D}${datadir}/${BPN} chown -R root:root ${D}${datadir}/${BPN} # Don't install patches to target rm -rf ${D}${datadir}/${BPN}/patches -- cgit v1.2.3-54-g00ecf