[OE-core] [PATCH] update-rc.d: fix failure on target

Laurentiu Palcu laurentiu.palcu at intel.com
Thu Jan 17 18:21:09 UTC 2013


The problem happened because the variables given to -n were not
surounded by quotes.

Signed-off-by: Laurentiu Palcu <laurentiu.palcu at intel.com>
---
 .../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} ;;
-- 
1.7.9.5





More information about the Openembedded-core mailing list