From: Chen Qi Date: Mon, 5 Aug 2013 01:27:34 +0000 (+0800) Subject: tiny-init: fix bashism X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44174721aeba2c18712818ac3698ee6807754ea7;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git tiny-init: fix bashism "source" is a bashism, replace it with the posix shell compliant "." Signed-off-by: Chen Qi Signed-off-by: Richard Purdie --- diff --git a/meta-yocto/recipes-core/tiny-init/files/init b/meta-yocto/recipes-core/tiny-init/files/init index 4b78f017fe2..9140e9558e6 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)