[oe-commits] Christian Ege : rng-tools: Fix path of default configuration file

git at git.openembedded.org git at git.openembedded.org
Wed May 13 12:42:09 UTC 2015


Module: meta-openembedded.git
Branch: master
Commit: 74fbc198d04b7cf178746d14eb5f6692afca657e
URL:    http://git.openembedded.org/?p=meta-openembedded.git&a=commit;h=74fbc198d04b7cf178746d14eb5f6692afca657e

Author: Christian Ege <k4230r6 at gmail.com>
Date:   Mon May  4 06:22:19 2015 +0200

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 <k4230r6 at gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>

---

 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 b3d880f..34a3f95 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
 }
 



More information about the Openembedded-commits mailing list