diff options
Diffstat (limited to 'meta/recipes-kernel/kmod')
-rw-r--r-- | meta/recipes-kernel/kmod/kmod/0001-Makefile.am-fix-parallel-build-problem.patch | 29 |
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 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | Subject: Makefile.am: fix parallel build problem | ||
4 | |||
5 | Fix 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 | |||
9 | Signed-off-by: Chen Qi <Qi.Chen@windriver.com> | ||
10 | --- | ||
11 | Makefile.am | 2 +- | ||
12 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
13 | |||
14 | diff --git a/Makefile.am b/Makefile.am | ||
15 | index 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 | -- | ||
28 | 1.9.1 | ||
29 | |||