X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=cirros-testvm%2Fsrc-cirros%2Fbuildroot-2015.05%2Fpackage%2Fopkg%2F0002-Fix-libtool-issue-with-recent-libtool.patch;fp=cirros-testvm%2Fsrc-cirros%2Fbuildroot-2015.05%2Fpackage%2Fopkg%2F0002-Fix-libtool-issue-with-recent-libtool.patch;h=4ba2bd3dfd09c1f0ec286163a3fe444ba56fd17a;hb=b0a0f15dfaa205161a7fcb20cf1b8cd4948c2ef3;hp=0000000000000000000000000000000000000000;hpb=c6ac3cd55ee2da956195eee393b0882105dfad4e;p=packages%2Ftrusty%2Fcirros-testvm.git diff --git a/cirros-testvm/src-cirros/buildroot-2015.05/package/opkg/0002-Fix-libtool-issue-with-recent-libtool.patch b/cirros-testvm/src-cirros/buildroot-2015.05/package/opkg/0002-Fix-libtool-issue-with-recent-libtool.patch new file mode 100644 index 0000000..4ba2bd3 --- /dev/null +++ b/cirros-testvm/src-cirros/buildroot-2015.05/package/opkg/0002-Fix-libtool-issue-with-recent-libtool.patch @@ -0,0 +1,35 @@ +From 932bf10f259a82ffc17060c032bfdddd0436ca2d Mon Sep 17 00:00:00 2001 +From: Thomas Petazzoni +Date: Mon, 22 Dec 2014 09:45:33 +0100 +Subject: [PATCH 2/2] Fix libtool issue with recent libtool + +With recent libtool versions, autoreconf complains that the set of +directories in AC_CONFIG_MACRO_DIR doesn't match the ones passed in +ACLOCAL_AMFLAGS. This patch fixes that by using AC_CONFIG_MACRO_DIRS +instead. + +Note that this patch will no longer be needed once we bump to opkg +0.3.0, since the shave/ macro directory has been removed. + +Signed-off-by: Thomas Petazzoni +--- + configure.ac | 3 +-- + 1 file changed, 1 insertion(+), 2 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 1ea2e78..0e3964d 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -3,8 +3,7 @@ AC_INIT([opkg], [0.2.4]) + AC_CONFIG_SRCDIR([libopkg/pkg.c]) + + AC_CONFIG_AUX_DIR([conf]) +-AC_CONFIG_MACRO_DIR([m4]) +-AC_CONFIG_MACRO_DIR([shave]) ++AC_CONFIG_MACRO_DIRS([shave m4]) + + AM_INIT_AUTOMAKE + AC_CONFIG_HEADERS(config.h) +-- +2.1.0 +