summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch')
-rw-r--r--meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch b/meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch
deleted file mode 100644
index 49b0209029..0000000000
--- a/meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1Upstream-Status: Pending
2
3Subject: Makefile.am: fix parallel build problem
4
5Fix parallel build problem to avoid errors like below.
6
7 install: cannot stat 'testsuite/module-playground/mod-fake-cciss.ko': No such file or directory
8
9Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
10---
11 Makefile.am | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/Makefile.am b/Makefile.am
15index 9457655..d5b02eb 100644
16--- a/Makefile.am
17+++ b/Makefile.am
18@@ -237,7 +237,7 @@ rootfs: build-module-playground
19
20 .PHONY: rootfs build-playground
21
22-$(ROOTFS): $(ROOTFS_PRISTINE)
23+$(ROOTFS): $(ROOTFS_PRISTINE) build-module-playground
24 $(CREATE_ROOTFS)
25
26 TESTSUITE_OVERRIDE_LIBS = \
27--
281.9.1
29