aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@googlemail.com>2015-02-13 18:02:11 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-02-13 17:07:09 +0000
commita849839f8cb5596ca34985b3c5e145564a305d93 (patch)
tree069548523cc67932a7337df4b4f9eb41a4def8a4 /meta/recipes-bsp
parentae32fed70e310d3e668ae5a27fb6a434d871ac5d (diff)
downloadopenembedded-core-contrib-a849839f8cb5596ca34985b3c5e145564a305d93.tar.gz
u-boot.inc: unbreak
fix multiple: | run.do_deploy.7526: line 107: [: missing `]' (From OE-Core rev: 71fa7c263cdb410f463f2c17a257ee02ecf2fa69) Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp')
-rw-r--r--meta/recipes-bsp/u-boot/u-boot.inc10
1 files 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 58725fa7aa..b898d6a34d 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