From: Zhenhua Luo Date: Fri, 3 Jun 2016 07:49:29 +0000 (+0800) Subject: ipsec-demo: Fix host contamination and build warning X-Git-Tag: 2.2~430 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=b72bac4b146ed01ca4235ff726daa361e5e075f7;p=meta-freescale.git ipsec-demo: Fix host contamination and build warning All files in the test_setkey directory are being copied with ownership preserved (cp -a). * Change ownership of all files in test_setkey directory to root:root Signed-off-by: Noor Signed-off-by: Abdur Rehman Signed-off-by: Sujith Haridasan Signed-off-by: Zhenhua Luo Signed-off-by: Otavio Salvador --- diff --git a/recipes-connectivity/ipsec-demo/ipsec-demo_0.1.bb b/recipes-connectivity/ipsec-demo/ipsec-demo_0.1.bb index be5b9f90..f29c375a 100644 --- a/recipes-connectivity/ipsec-demo/ipsec-demo_0.1.bb +++ b/recipes-connectivity/ipsec-demo/ipsec-demo_0.1.bb @@ -16,6 +16,7 @@ do_compile[noexec] = "1" do_install(){ install -d ${D}${datadir} cp -a ${WORKDIR}/test_setkey ${D}${datadir}/ + chown -R root:root ${D}${datadir}/test_setkey } FILES_${PN} = "${datadir}/*"