From b2da05554b7843221a102a3dcbb2cfb5cb9a4d0b Mon Sep 17 00:00:00 2001 From: Sujith H Date: Fri, 22 Apr 2016 14:56:19 +0530 Subject: 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 * Missing bash in RDEPEND warning was coming. Signed-off-by: Noor Signed-off-by: Abdur Rehman Signed-off-by: Sujith Haridasan --- recipes-connectivity/ipsec-demo/ipsec-demo_0.1.bb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/recipes-connectivity/ipsec-demo/ipsec-demo_0.1.bb b/recipes-connectivity/ipsec-demo/ipsec-demo_0.1.bb index 2fa7695..7be7e30 100644 --- a/recipes-connectivity/ipsec-demo/ipsec-demo_0.1.bb +++ b/recipes-connectivity/ipsec-demo/ipsec-demo_0.1.bb @@ -19,7 +19,11 @@ do_compile() { do_install(){ install -d ${D}${datadir} cp -a ${WORKDIR}/test_setkey ${D}${datadir}/ + chown -R root:root ${D}${datadir}/test_setkey } FILES_${PN} = "${datadir}/*" + +RDEPENDS_${PN} += "bash" + COMPATIBLE_MACHINE = "(qoriq)" -- cgit v1.2.3-54-g00ecf