From eb374e6b588aefb5c039a4b3a71af98ae5a82595 Mon Sep 17 00:00:00 2001 From: Themaister Date: Thu, 7 Mar 2019 16:14:35 +0100 Subject: [PATCH] Fix portability hazard in qb/. --- qb/config.libs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qb/config.libs.sh b/qb/config.libs.sh index 0c5b2da607..bf15541e26 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -348,7 +348,7 @@ if [ "$HAVE_OPENGL" != 'no' ] && [ "$HAVE_OPENGLES" != 'yes' ]; then fi fi -if [ "$HAVE_OPENGL" == 'no' ] && [ "$HAVE_OPENGLES3" == 'no' ]; then +if [ "$HAVE_OPENGL" = 'no' ] && [ "$HAVE_OPENGLES3" = 'no' ]; then die : 'Notice: OpenGL and OpenGLES3 are disabled. Disabling HAVE_OPENGL_CORE.' HAVE_OPENGL_CORE='no' fi