From 74fbc198d04b7cf178746d14eb5f6692afca657e Mon Sep 17 00:00:00 2001 From: Christian Ege Date: Mon, 4 May 2015 06:22:19 +0200 Subject: [PATCH] rng-tools: Fix path of default configuration file The initscript expects the config file in the folder /etc/default/ but the recipe copied it to /etc. The recipe already created the folder /etc/default/ put it there. Signed-off-by: Christian Ege Signed-off-by: Martin Jansa --- meta-oe/recipes-support/rng-tools/rng-tools_4.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-support/rng-tools/rng-tools_4.bb b/meta-oe/recipes-support/rng-tools/rng-tools_4.bb index b3d880ff35..34a3f95fdf 100644 --- a/meta-oe/recipes-support/rng-tools/rng-tools_4.bb +++ b/meta-oe/recipes-support/rng-tools/rng-tools_4.bb @@ -28,7 +28,7 @@ do_install_append() { ${D}${sysconfdir}/init.d/rng-tools install -d "${D}${sysconfdir}/default" - install -m 0644 ${WORKDIR}/default ${D}${sysconfdir}/rng-tools + install -m 0644 ${WORKDIR}/default ${D}${sysconfdir}/default/rng-tools fi }