From 7616bea24c9537db254a9161043a7dae9eb461f0 Mon Sep 17 00:00:00 2001 From: Chen Qi Date: Mon, 5 Aug 2013 09:27:34 +0800 Subject: [PATCH] tiny-init: fix bashism "source" is a bashism, replace it with the posix shell compliant "." (From meta-yocto rev: 44174721aeba2c18712818ac3698ee6807754ea7) Signed-off-by: Chen Qi Signed-off-by: Richard Purdie --- meta-yocto/recipes-core/tiny-init/files/init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-yocto/recipes-core/tiny-init/files/init b/meta-yocto/recipes-core/tiny-init/files/init index 4b78f017fe..9140e9558e 100644 --- a/meta-yocto/recipes-core/tiny-init/files/init +++ b/meta-yocto/recipes-core/tiny-init/files/init @@ -15,7 +15,7 @@ ifup lo # Allow for distro or local customizations if [ -f /etc/rc.local ] ; then - source /etc/rc.local + . /etc/rc.local fi # Become session leader and try to find a real tty (e.g. ttyS0)