mirror of
https://git.yoctoproject.org/poky
synced 2026-02-28 04:19:40 +01:00
Refresh patches to avoid warning. (From OE-Core rev: 5dc170d74e932e1dbfc58d23b204bf1d9ebc6e42) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.2 KiB
Diff
32 lines
1.2 KiB
Diff
From be6f82c54f694617c646ca1f8b5bcf93694e20ad Mon Sep 17 00:00:00 2001
|
|
From: Tudor Florea <tudor.florea@enea.com>
|
|
Date: Fri, 6 Sep 2013 21:11:57 +0000
|
|
Subject: [PATCH] kmod: avoid parallel-tests
|
|
|
|
Avoid parallel-tests as it remove
|
|
buildtest-TESTS and runtest-TESTS targets required by ptest.
|
|
In automake 1.13.4 parallel-tests is assumed by defauls.
|
|
In order to have buildtest-TESTS and runtest-TESTS targets
|
|
serial-tests is now required
|
|
|
|
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
|
|
Upstream-Status: Inappropriate (disable feature incompatible with ptest)
|
|
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index ee72283..60980c0 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -14,7 +14,7 @@ AC_USE_SYSTEM_EXTENSIONS
|
|
AC_SYS_LARGEFILE
|
|
AC_PREFIX_DEFAULT([/usr])
|
|
AM_MAINTAINER_MODE([enable])
|
|
-AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests parallel-tests])
|
|
+AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests serial-tests])
|
|
AM_SILENT_RULES([yes])
|
|
LT_INIT([disable-static pic-only])
|
|
DOLT
|