summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel/kmod/kmod/fix-seperatebuilddir.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-kernel/kmod/kmod/fix-seperatebuilddir.patch')
-rw-r--r--meta/recipes-kernel/kmod/kmod/fix-seperatebuilddir.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/meta/recipes-kernel/kmod/kmod/fix-seperatebuilddir.patch b/meta/recipes-kernel/kmod/kmod/fix-seperatebuilddir.patch
deleted file mode 100644
index b090eb56a5..0000000000
--- a/meta/recipes-kernel/kmod/kmod/fix-seperatebuilddir.patch
+++ /dev/null
@@ -1,34 +0,0 @@
1
2If we are not building in the existing source tree, the testsuite
3directory will not exist so the cp of the stamp-rootfs would fail.
4
5Also added buildtest-TESTS so they could be build in the cross env,
6without running the tests.
7
8Upstream-Status: Accepted
9
10Signed-off-by: Saul Wold <sgw@linux.intel.com>
11
12Index: git/Makefile.am
13===================================================================
14--- git.orig/Makefile.am
15+++ git/Makefile.am
16@@ -131,7 +131,7 @@ endif
17
18 ROOTFS = testsuite/rootfs
19 ROOTFS_PRISTINE = $(top_srcdir)/testsuite/rootfs-pristine
20-CREATE_ROOTFS = $(AM_V_GEN) ( $(RM) -rf $(ROOTFS) && \
21+CREATE_ROOTFS = $(AM_V_GEN) ( $(RM) -rf $(ROOTFS) && mkdir -p $(dir $(ROOTFS)) && \
22 cp -r $(ROOTFS_PRISTINE) $(ROOTFS) && \
23 touch testsuite/stamp-rootfs && \
24 find $(ROOTFS) -type d -exec chmod +w {} \; )
25@@ -217,6 +217,9 @@ DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-d
26
27 distclean-local: $(DISTCLEAN_LOCAL_HOOKS)
28
29+buildtest-TESTS:
30+ $(MAKE) $(AM_MAKEFLAGS) $(check_LTLIBRARIES) $(check_PROGRAMS)
31+
32 install-ptest:
33 @$(MKDIR_P) $(DESTDIR)/testsuite
34 @for file in $(TESTSUITE); do \