From patchwork Thu Jan 17 18:21:09 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: update-rc.d: fix failure on target Date: Thu, 17 Jan 2013 18:21:09 -0000 From: Laurentiu Palcu X-Patchwork-Id: 42827 Message-Id: <1358446869-16665-1-git-send-email-laurentiu.palcu@intel.com> To: openembedded-core@lists.openembedded.org The problem happened because the variables given to -n were not surounded by quotes. Signed-off-by: Laurentiu Palcu --- .../update-rc.d/check-if-symlinks-are-valid.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-core/update-rc.d/update-rc.d/check-if-symlinks-are-valid.patch b/meta/recipes-core/update-rc.d/update-rc.d/check-if-symlinks-are-valid.patch index 4476e91..6f402dd 100644 --- a/meta/recipes-core/update-rc.d/update-rc.d/check-if-symlinks-are-valid.patch +++ b/meta/recipes-core/update-rc.d/update-rc.d/check-if-symlinks-are-valid.patch @@ -24,10 +24,10 @@ Index: git/update-rc.d shift +sn=$initd/$bn -+if [ -L "$sn" -a -n $root ]; then ++if [ -L "$sn" -a -n "$root" ]; then + readlink=$(which readlink) + -+ if [ -n $readlink ]; then ++ if [ -n "$readlink" ]; then + sn=$($readlink "$sn") + case "$sn" in + /*) sn=${root}${sn} ;;