diff options
author | Tomasz Olszak <olszak.tomasz@gmail.com> | 2015-01-27 23:56:01 +0100 |
---|---|---|
committer | Tomasz Olszak <olszak.tomasz@gmail.com> | 2015-02-28 21:40:50 +0100 |
commit | b85f6535c9af88851beeee1908897ad28b0fa36b (patch) | |
tree | 72c8d6bc04f454b132a3b2de64d463981d7fedd8 | |
parent | cee477523e1acbb4ad7a72db635cbf77aae86037 (diff) | |
download | qtbase-b85f6535c9af88851beeee1908897ad28b0fa36b.tar.gz qtbase-b85f6535c9af88851beeee1908897ad28b0fa36b.tar.bz2 qtbase-b85f6535c9af88851beeee1908897ad28b0fa36b.zip |
Fixed force egl option
Change-Id: If589222a8c2a8a724be7f39241db11dd48bd0f43
Bug-Tizen: TIVI-2416
Signed-off-by: Tomasz Olszak <olszak.tomasz@gmail.com>
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5258,7 +5258,7 @@ if [ "$CFG_EGL" != "no" ]; then fi # detect EGL support if compileTest qpa/egl "EGL" $QMAKE_CFLAGS_EGL $QMAKE_LIBS_EGL; then CFG_EGL=yes - if compileTest qpa/egl-x11 "EGL-X11" $QMAKE_CFLAGS_EGL $QMAKE_LIBS_EGL || [ "$CFG_FORCE_EGL_X" == "yes" ]; then + if compileTest qpa/egl-x11 "EGL-X11" $QMAKE_CFLAGS_EGL $QMAKE_LIBS_EGL || [ "$CFG_FORCE_EGL_X" = "yes" ]; then CFG_EGL_X=yes else CFG_EGL_X=no |