blob: feafcb9b7c6e4c94885dd2d34b63cae798c476bd [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001Avoid parallel-tests as it remove
2buildtest-TESTS and runtest-TESTS targets required by ptest.
3In automake 1.13.4 parallel-tests is assumed by defauls.
4In order to have buildtest-TESTS and runtest-TESTS targets
5serial-tests is now required
6
7Signed-off-by: Tudor Florea <tudor.florea@enea.com>
8Upstream-Status: Inappropriate (disable feature incompatible with ptest)
9
10---
11 configure.ac | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/configure.ac b/configure.ac
15index eb0f9d1..a539968 100644
16--- a/configure.ac
17+++ b/configure.ac
18@@ -14,7 +14,7 @@ AC_USE_SYSTEM_EXTENSIONS
19 AC_SYS_LARGEFILE
20 AC_PREFIX_DEFAULT([/usr])
21 AM_MAINTAINER_MODE([enable])
22-AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests parallel-tests])
23+AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests serial-tests])
24 AM_SILENT_RULES([yes])
25 LT_INIT([disable-static pic-only])
26
27--
281.9.1
29