test(1) uses '=' to test if strings are identical
https://bugzilla.gnome.org/show_bug.cgi?id=682340 Reviewed-by: Neil Roberts <neil@linux.intel.com> (cherry picked from commit 5cd15e7781466307a27c31e6e3f1e7f5ade5cfee)
This commit is contained in:
parent
615e319384
commit
4589c6f158
10
configure.ac
10
configure.ac
@ -790,7 +790,7 @@ AC_ARG_ENABLE(
|
|||||||
[],
|
[],
|
||||||
enable_gdl_egl_platform=no
|
enable_gdl_egl_platform=no
|
||||||
)
|
)
|
||||||
AS_IF([test "x$enable_gdl_egl_platform" == "xyes"],
|
AS_IF([test "x$enable_gdl_egl_platform" = "xyes"],
|
||||||
[
|
[
|
||||||
EGL_PLATFORM_COUNT=$((EGL_PLATFORM_COUNT+1))
|
EGL_PLATFORM_COUNT=$((EGL_PLATFORM_COUNT+1))
|
||||||
NEED_EGL=yes
|
NEED_EGL=yes
|
||||||
@ -821,7 +821,7 @@ AC_ARG_ENABLE(
|
|||||||
[],
|
[],
|
||||||
enable_wayland_egl_platform=no
|
enable_wayland_egl_platform=no
|
||||||
)
|
)
|
||||||
AS_IF([test "x$enable_wayland_egl_platform" == "xyes"],
|
AS_IF([test "x$enable_wayland_egl_platform" = "xyes"],
|
||||||
[
|
[
|
||||||
EGL_PLATFORM_COUNT=$((EGL_PLATFORM_COUNT+1))
|
EGL_PLATFORM_COUNT=$((EGL_PLATFORM_COUNT+1))
|
||||||
NEED_EGL=yes
|
NEED_EGL=yes
|
||||||
@ -846,7 +846,7 @@ AC_ARG_ENABLE(
|
|||||||
[],
|
[],
|
||||||
enable_kms_egl_platform=no
|
enable_kms_egl_platform=no
|
||||||
)
|
)
|
||||||
AS_IF([test "x$enable_kms_egl_platform" == "xyes"],
|
AS_IF([test "x$enable_kms_egl_platform" = "xyes"],
|
||||||
[
|
[
|
||||||
EGL_PLATFORM_COUNT=$((EGL_PLATFORM_COUNT+1))
|
EGL_PLATFORM_COUNT=$((EGL_PLATFORM_COUNT+1))
|
||||||
NEED_EGL=yes
|
NEED_EGL=yes
|
||||||
@ -870,7 +870,7 @@ AC_ARG_ENABLE(
|
|||||||
[],
|
[],
|
||||||
enable_wayland_egl_server=no
|
enable_wayland_egl_server=no
|
||||||
)
|
)
|
||||||
AS_IF([test "x$enable_wayland_egl_server" == "xyes"],
|
AS_IF([test "x$enable_wayland_egl_server" = "xyes"],
|
||||||
[
|
[
|
||||||
NEED_EGL=yes
|
NEED_EGL=yes
|
||||||
COGL_PKG_REQUIRES="$COGL_PKG_REQUIRES wayland-server"
|
COGL_PKG_REQUIRES="$COGL_PKG_REQUIRES wayland-server"
|
||||||
@ -886,7 +886,7 @@ AC_ARG_ENABLE(
|
|||||||
[],
|
[],
|
||||||
enable_android_egl_platform=no
|
enable_android_egl_platform=no
|
||||||
)
|
)
|
||||||
AS_IF([test "x$enable_android_egl_platform" == "xyes"],
|
AS_IF([test "x$enable_android_egl_platform" = "xyes"],
|
||||||
[
|
[
|
||||||
EGL_PLATFORM_COUNT=$((EGL_PLATFORM_COUNT+1))
|
EGL_PLATFORM_COUNT=$((EGL_PLATFORM_COUNT+1))
|
||||||
NEED_EGL=yes
|
NEED_EGL=yes
|
||||||
|
Loading…
x
Reference in New Issue
Block a user