diff options
author | Ritt Konstantin <ritt.ks@gmail.com> | 2011-01-20 15:02:42 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2011-01-20 15:38:06 (GMT) |
commit | de84d6420ab95fe82d3375110b8437ba0f6706a7 (patch) | |
tree | e9874db2f0d246056dfdb5757fef729a2a616442 /configure | |
parent | e0c2861976e06658a1d651941310407c15b0bcde (diff) | |
download | Qt-de84d6420ab95fe82d3375110b8437ba0f6706a7.zip Qt-de84d6420ab95fe82d3375110b8437ba0f6706a7.tar.gz Qt-de84d6420ab95fe82d3375110b8437ba0f6706a7.tar.bz2 |
be more consistent about CFG_EGL_GLES_INCLUDES interpretation
!"no" != "yes"; use the same condition in both places
Merge-request: 1027
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
Reviewed-by: mariusSO
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8310,7 +8310,7 @@ else echo "OpenGL support ......... no" fi if [ "$CFG_EGL" != "no" ]; then - if [ "$CFG_EGL_GLES_INCLUDES" != "no" ]; then + if [ "$CFG_EGL_GLES_INCLUDES" = "yes" ]; then echo "EGL support ............ yes <GLES/egl.h>" else echo "EGL support ............ yes <EGL/egl.h>" |