The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / opkg / 0001-Disable-tests-and-manpages.patch
1 From 1c8e21e220ed0af6de3ab776d3edf8f0be69e779 Mon Sep 17 00:00:00 2001
2 From: "Yann E. MORIN" <yann.morin.1998@free.fr>
3 Date: Mon, 22 Dec 2014 09:45:08 +0100
4 Subject: [PATCH 1/2] Disable tests and manpages
5
6 Tests are forcibly statically linked to libopkg, which does not work in
7 a shared-only build.
8
9 Since Buildroot does not care about testsuites, just disable building the
10 tests. Disable manpages at the same time for the same reason.
11
12 Note: dynamically linking with libopkg is also possible, but that would
13 not be upstreamable (too much changes already in upstream).
14
15 Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
16 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
17 ---
18  Makefile.am | 2 +-
19  1 file changed, 1 insertion(+), 1 deletion(-)
20
21 diff --git a/Makefile.am b/Makefile.am
22 index 8baa62c..497b774 100644
23 --- a/Makefile.am
24 +++ b/Makefile.am
25 @@ -1,6 +1,6 @@
26  ACLOCAL_AMFLAGS = -I shave -I m4
27  
28 -SUBDIRS = libbb libopkg src tests utils man
29 +SUBDIRS = libbb libopkg src utils
30  
31  
32  HOST_CPU=@host_cpu@
33 -- 
34 2.1.0
35