From b72bac4b146ed01ca4235ff726daa361e5e075f7 Mon Sep 17 00:00:00 2001 From: Zhenhua Luo Date: Fri, 3 Jun 2016 15:49:29 +0800 Subject: [PATCH] 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 --- recipes-connectivity/ipsec-demo/ipsec-demo_0.1.bb | 1 + 1 file changed, 1 insertion(+) 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}/*" -- 2.40.1