blob: 04a8204815397726e4c7246c782bc96398792eb3 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From be6f82c54f694617c646ca1f8b5bcf93694e20ad Mon Sep 17 00:00:00 2001
2From: Tudor Florea <tudor.florea@enea.com>
3Date: Fri, 6 Sep 2013 21:11:57 +0000
4Subject: [PATCH] kmod: avoid parallel-tests
5
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006Avoid parallel-tests as it remove
7buildtest-TESTS and runtest-TESTS targets required by ptest.
8In automake 1.13.4 parallel-tests is assumed by defauls.
9In order to have buildtest-TESTS and runtest-TESTS targets
10serial-tests is now required
11
12Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Brad Bishop19323692019-04-05 15:28:33 -040013Upstream-Status: Inappropriate (disable feature incompatible with ptest)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014
15---
16 configure.ac | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
18
Brad Bishop19323692019-04-05 15:28:33 -040019diff --git a/configure.ac b/configure.ac
20index ee72283..60980c0 100644
21--- a/configure.ac
22+++ b/configure.ac
Brad Bishopc68388fc2019-08-26 01:33:31 -040023@@ -14,8 +14,8 @@ AC_USE_SYSTEM_EXTENSIONS
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024 AC_SYS_LARGEFILE
25 AC_PREFIX_DEFAULT([/usr])
26 AM_MAINTAINER_MODE([enable])
27-AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests parallel-tests])
28+AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests serial-tests])
29 AM_SILENT_RULES([yes])
30 LT_INIT([disable-static pic-only])
Brad Bishopc68388fc2019-08-26 01:33:31 -040031
32 AS_IF([test "x$enable_static" = "xyes"], [AC_MSG_ERROR([--enable-static is not supported by kmod])])