]> granicus.if.org Git - xz/commitdiff
Build: Require Automake 1.12 and use serial-tests option.
authorLasse Collin <lasse.collin@tukaani.org>
Wed, 26 Jun 2013 09:17:00 +0000 (12:17 +0300)
committerLasse Collin <lasse.collin@tukaani.org>
Wed, 26 Jun 2013 09:17:00 +0000 (12:17 +0300)
It should actually still work with Automake 1.10 if
the serial-tests option is removed. Automake 1.13 started
using parallel tests by default and the option to get
the old behavior isn't supported before 1.12.

At least for now, parallel tests don't improve anything
in XZ Utils but they hide the progress output from
test_compress.sh.

configure.ac

index b52eb662222f38f7eecbd9424a9cd083e753c36d..97dfb2760f58b54ec15049328d83761c49d7ceed 100644 (file)
@@ -443,7 +443,9 @@ fi
 echo
 echo "Initializing Automake:"
 
-AM_INIT_AUTOMAKE([1.10 foreign tar-v7 filename-length-max=99])
+# Automake 1.10 should still be enough but you need to omit serial-tests.
+dnl AM_INIT_AUTOMAKE([1.10 foreign tar-v7 filename-length-max=99])
+AM_INIT_AUTOMAKE([1.12 foreign tar-v7 filename-length-max=99 serial-tests])
 AC_PROG_LN_S
 
 AC_PROG_CC_C99