From 8f0fc0c6a86398687c758f2a91f71ebb15a695d7 Mon Sep 17 00:00:00 2001 From: Peter TB Brett Date: Fri, 30 Aug 2013 21:47:07 +0100 Subject: [PATCH] build-sys: Fix running tests with latest versions of Automake Recent versions of Automake have introduced some really cool new ways to run tests (in parallel, using custom tools, etc etc). Unfortunately we (probably) can't rely on all developers having such new tools yet, so disable it. --- configure.ac | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0ab07881b..1eed6883d 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,9 @@ AC_CONFIG_AUX_DIR([build-tools]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADER([config.h]) -AM_INIT_AUTOMAKE +# 'serial-tests' option disables support for parallel testsuites +# present in recent versions of Automake. +AM_INIT_AUTOMAKE([serial-tests]) AM_SILENT_RULES AC_GNU_SOURCE # FIXME for some reason this is needed? -- 2.11.4.GIT