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 5cd15e7781)
This commit is contained in:
Patrick Welche 2012-08-21 11:10:23 +01:00 committed by Neil Roberts
parent 615e319384
commit 4589c6f158
1 changed files with 5 additions and 5 deletions

View File

@ -790,7 +790,7 @@ AC_ARG_ENABLE(
[],
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))
NEED_EGL=yes
@ -821,7 +821,7 @@ AC_ARG_ENABLE(
[],
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))
NEED_EGL=yes
@ -846,7 +846,7 @@ AC_ARG_ENABLE(
[],
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))
NEED_EGL=yes
@ -870,7 +870,7 @@ AC_ARG_ENABLE(
[],
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
COGL_PKG_REQUIRES="$COGL_PKG_REQUIRES wayland-server"
@ -886,7 +886,7 @@ AC_ARG_ENABLE(
[],
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))
NEED_EGL=yes