diff options
Diffstat (limited to 'm4')
| -rw-r--r-- | m4/introspection.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/introspection.m4 b/m4/introspection.m4 index 44d19251..b3c2844e 100644 --- a/m4/introspection.m4 +++ b/m4/introspection.m4 @@ -30,7 +30,7 @@ m4_define([_GOBJECT_INTROSPECTION_CHECK_INTERNAL], INTROSPECTION_GIRDIR= INTROSPECTION_TYPELIBDIR= - if test "x$enable_introspection" == "xno"; then + if test "x$enable_introspection" = "xno"; then found_introspection="no" else PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1], [ @@ -52,7 +52,7 @@ m4_define([_GOBJECT_INTROSPECTION_CHECK_INTERNAL], AC_MSG_RESULT([$found_introspection]) ], [found_introspection="no (not installed)"]) - if test "x$enable_introspection" == "xyes"; then + if test "x$enable_introspection" = "xyes"; then if test "x$found_introspection" != "xyes"; then AC_MSG_ERROR([introspection enabled but can't be used]) fi |