[cogl/cogl-1.10] test(1) uses '=' to test if strings are identical
- From: Neil Roberts <nroberts src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cogl/cogl-1.10] test(1) uses '=' to test if strings are identical
- Date: Tue, 28 Aug 2012 10:30:13 +0000 (UTC)
commit 499784f4d86cd03a70caf9b66d5d03ef4385e043
Author: Patrick Welche <prlw1 cam ac uk>
Date: Tue Aug 21 11:10:23 2012 +0100
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)
configure.ac | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 25f6694..4678764 100644
--- a/configure.ac
+++ b/configure.ac
@@ -715,7 +715,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
@@ -746,7 +746,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
@@ -771,7 +771,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
@@ -795,7 +795,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"
@@ -811,7 +811,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
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]