summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMilan Broz <gmazyland@gmail.com>2013-06-23 16:16:43 +0200
committerMilan Broz <gmazyland@gmail.com>2013-06-23 16:16:43 +0200
commitcf99ecb5a9829da5e449241c499af56beb2a0052 (patch)
treeb2d289e25089e809a18bfad3d73e4f04e70048c6
parent0d818d0a92d83e9d368a49c7a540db901c0c00cd (diff)
downloadcryptsetup-cf99ecb5a9829da5e449241c499af56beb2a0052.tar.gz
cryptsetup-cf99ecb5a9829da5e449241c499af56beb2a0052.tar.bz2
cryptsetup-cf99ecb5a9829da5e449241c499af56beb2a0052.zip
Force use serial-tests.
Unfortunately, automake did not provided compatible way, so if anyone need to use old automake, one line change in is needed.
-rw-r--r--configure.ac8
1 files changed, 7 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 02caa55..5796ff9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,7 +11,13 @@ AC_CONFIG_SRCDIR(src/cryptsetup.c)
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h:config.h.in])
-AM_INIT_AUTOMAKE(dist-bzip2)
+
+# We do not want to run test in parallel. Really.
+# http://lists.gnu.org/archive/html/automake/2013-01/msg00060.html
+
+# For old automake use this
+#AM_INIT_AUTOMAKE(dist-bzip2)
+AM_INIT_AUTOMAKE([dist-bzip2 1.12 serial-tests])
if test "x$prefix" = "xNONE"; then
sysconfdir=/etc