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 / 0002-Fix-libtool-issue-with-recent-libtool.patch
1 From 932bf10f259a82ffc17060c032bfdddd0436ca2d Mon Sep 17 00:00:00 2001
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Mon, 22 Dec 2014 09:45:33 +0100
4 Subject: [PATCH 2/2] Fix libtool issue with recent libtool
5
6 With recent libtool versions, autoreconf complains that the set of
7 directories in AC_CONFIG_MACRO_DIR doesn't match the ones passed in
8 ACLOCAL_AMFLAGS. This patch fixes that by using AC_CONFIG_MACRO_DIRS
9 instead.
10
11 Note that this patch will no longer be needed once we bump to opkg
12 0.3.0, since the shave/ macro directory has been removed.
13
14 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 ---
16  configure.ac | 3 +--
17  1 file changed, 1 insertion(+), 2 deletions(-)
18
19 diff --git a/configure.ac b/configure.ac
20 index 1ea2e78..0e3964d 100644
21 --- a/configure.ac
22 +++ b/configure.ac
23 @@ -3,8 +3,7 @@ AC_INIT([opkg], [0.2.4])
24  AC_CONFIG_SRCDIR([libopkg/pkg.c])
25  
26  AC_CONFIG_AUX_DIR([conf])
27 -AC_CONFIG_MACRO_DIR([m4])
28 -AC_CONFIG_MACRO_DIR([shave])
29 +AC_CONFIG_MACRO_DIRS([shave m4])
30  
31  AM_INIT_AUTOMAKE
32  AC_CONFIG_HEADERS(config.h)
33 -- 
34 2.1.0
35