From 0e8d48b920398a8473f39ea886df0379dc77602d Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Wed, 8 Feb 2012 17:46:31 -0800 Subject: [PATCH] configure: Fix build on debian by avoiding bashisms in the test command. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.7.4