summaryrefslogtreecommitdiff
path: root/m4macros
diff options
context:
space:
mode:
authorPatrick Welche <prlw1@cam.ac.uk>2013-11-07 10:58:46 +0000
committerColin Walters <walters@verbum.org>2013-11-07 07:28:27 -0500
commit838b49ead77c35d94fa16d48a6d7271bab082a71 (patch)
treed97f6f74c9ac7d07a7b4ef6aa20c2a81a693dc3d /m4macros
parent87e6db8deb96565cf4336c187e0dcec8b014cae2 (diff)
downloadglib-838b49ead77c35d94fa16d48a6d7271bab082a71.tar.gz
configure: test(1) uses = to test for string equality
https://bugzilla.gnome.org/show_bug.cgi?id=711600
Diffstat (limited to 'm4macros')
-rw-r--r--m4macros/glibtests.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4macros/glibtests.m4 b/m4macros/glibtests.m4
index 27e902466..7d5920a43 100644
--- a/m4macros/glibtests.m4
+++ b/m4macros/glibtests.m4
@@ -21,7 +21,7 @@ AC_DEFUN([GLIB_TESTS],
*) AC_MSG_ERROR([bad value ${enableval} for --enable-always-build-tests]) ;;
esac])
AM_CONDITIONAL([ENABLE_ALWAYS_BUILD_TESTS], test "$ENABLE_ALWAYS_BUILD_TESTS" = "1")
- if test "$ENABLE_INSTALLED_TESTS" == "1"; then
+ if test "$ENABLE_INSTALLED_TESTS" = "1"; then
AC_SUBST(installed_test_metadir, [${datadir}/installed-tests/]AC_PACKAGE_NAME)
AC_SUBST(installed_testdir, [${libexecdir}/installed-tests/]AC_PACKAGE_NAME)
fi