[meta-freescale] [PATCH] qtbase: Fix if condition in do_configure_prepend task

Fabio Berton fabio.berton at ossystems.com.br
Thu Oct 13 13:20:07 PDT 2016


Add missing bracket to if statement.

Signed-off-by: Fabio Berton <fabio.berton at ossystems.com.br>
---
 dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend b/dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend
index a693fb2..178d80d 100644
--- a/dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend
+++ b/dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend
@@ -20,7 +20,7 @@ do_configure_prepend_mx6() {
     # adapt qmake.conf to our needs
     sed -i 's!load(qt_config)!!' ${S}/mkspecs/linux-oe-g++/qmake.conf
     if test ${HAS_X11} -eq 0; then
-        if [ "${IMXGPU}" = "3d"; then
+        if [ "${IMXGPU}" = "3d" ]; then
     
             cat >> ${S}/mkspecs/linux-oe-g++/qmake.conf <<EOF
 IMX6_CFLAGS             = -DLINUX=1 -DEGL_API_FB=1
-- 
2.1.4



More information about the meta-freescale mailing list