]> code.ossystems Code Review - openembedded-core.git/commitdiff
u-boot.inc: unbreak
authorAndreas Müller <schnitzeltony@googlemail.com>
Fri, 13 Feb 2015 17:02:11 +0000 (18:02 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 13 Feb 2015 17:06:53 +0000 (17:06 +0000)
fix multiple:

| run.do_deploy.7526: line 107: [: missing `]'

Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-bsp/u-boot/u-boot.inc

index 58725fa7aa1f5b17445265128b00dd5b1363854b..b898d6a34de8bc2e34571e45de1deaa9c2b9626c 100644 (file)
@@ -71,7 +71,7 @@ do_compile () {
                 then
                     continue
                 fi
-                if [ -d "${S}/${config}/u-boot-${type}.${UBOOT_SUFFIX}"]
+                if [ -d "${S}/${config}/u-boot-${type}.${UBOOT_SUFFIX}" ]
                 then
                     break
                 else
@@ -97,7 +97,7 @@ do_install () {
                 then
                     continue
                 fi
-                if [ -d "${D}/boot/u-boot-${type}.${UBOOT_SUFFIX}"]
+                if [ -d "${D}/boot/u-boot-${type}.${UBOOT_SUFFIX}" ]
                 then
                     break
                 else
@@ -128,7 +128,7 @@ do_install () {
                      then
                          continue
                      fi
-                     if [ -d "${D}/boot/${SPL_IMAGE}-${type}"]
+                     if [ -d "${D}/boot/${SPL_IMAGE}-${type}" ]
                      then
                          break
                      else
@@ -162,7 +162,7 @@ do_deploy () {
                 then
                     continue
                 fi
-                if [ -d "${DEPLOYDIR}/u-boot-${type}.${UBOOT_SUFFIX}"]
+                if [ -d "${DEPLOYDIR}/u-boot-${type}.${UBOOT_SUFFIX}" ]
                 then 
                     break
                 else
@@ -195,7 +195,7 @@ do_deploy () {
                       then
                           continue
                       fi
-                      if [ -d "${DEPLOYDIR}/${SPL_IMAGE}-${type}"]
+                      if [ -d "${DEPLOYDIR}/${SPL_IMAGE}-${type}" ]
                       then
                           break
                       else