From 208680303344da1379e2d933962104120a025e6f Mon Sep 17 00:00:00 2001 From: Jan Havran Date: Wed, 27 Feb 2019 16:23:56 +0100 Subject: Fix configure.ac checking for USE_MD5SUM 'configure.ac' generates 'configure' with invalid syntax, it is not allowed to test integer like this Signed-off-by: Jan Havran --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1681367..02c8b93 100644 --- a/configure.ac +++ b/configure.ac @@ -194,7 +194,7 @@ esac AC_SUBST(OS_LDFLAGS) AC_SUBST(USE_MD5SUM) AC_DEFINE_UNQUOTED(USE_MD5SUM,"$USE_MD5SUM",[Using md5sum command line if available]) -AM_CONDITIONAL(USE_MD5SUM, $USE_MD5SUM) +AM_CONDITIONAL(USE_MD5SUM, [test $USE_MD5SUM = 1]) # system-dependent config.h values test "x$JACK_THREAD_STACK_TOUCH" = "x" && JACK_THREAD_STACK_TOUCH=500000 -- cgit v1.2.1