[oe-commits] =?UTF-8?Q?Andreas=20M=C3=BCller=20?=: u-boot.inc: unbreak

git at git.openembedded.org git at git.openembedded.org
Sat Feb 14 22:27:30 UTC 2015


Module: openembedded-core.git
Branch: master-next
Commit: 71fa7c263cdb410f463f2c17a257ee02ecf2fa69
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=71fa7c263cdb410f463f2c17a257ee02ecf2fa69

Author: Andreas Müller <schnitzeltony at googlemail.com>
Date:   Fri Feb 13 18:02:11 2015 +0100

u-boot.inc: unbreak

fix multiple:

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

Signed-off-by: Andreas Müller <schnitzeltony at googlemail.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-bsp/u-boot/u-boot.inc | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta/recipes-bsp/u-boot/u-boot.inc b/meta/recipes-bsp/u-boot/u-boot.inc
index 58725fa..b898d6a 100644
--- a/meta/recipes-bsp/u-boot/u-boot.inc
+++ b/meta/recipes-bsp/u-boot/u-boot.inc
@@ -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



More information about the Openembedded-commits mailing list