summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2012-02-08 17:46:31 -0800
committerEric Anholt <eric@anholt.net>2012-03-13 12:39:00 -0700
commit0e8d48b920398a8473f39ea886df0379dc77602d (patch)
treed48887f3e9c9f17fc69c74e5f0d60034c85c8774
parentf02a649a3ce5735f5a20103fe6f1002b3a421501 (diff)
configure: Fix build on debian by avoiding bashisms in the test command.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index c6e1e96..9467ff7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -167,7 +167,7 @@ AC_ARG_ENABLE(tests,
AS_HELP_STRING([--disable-tests],
[do not build unit tests [default=enabled]]),,
enable_tests=yes)
-AM_CONDITIONAL(BUILD_TESTS, test x$enable_tests == xyes)
+AM_CONDITIONAL(BUILD_TESTS, test x$enable_tests = xyes)
if test "x$GCC" = "xyes"; then
GCC_CFLAGS="-Wall -g -Wstrict-prototypes -Wmissing-prototypes -fvisibility=hidden"