diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-12-22 09:49:15 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-12-22 09:49:15 +0100 |
commit | 872e102386825e0780d12e7d1af6f97c84beb519 (patch) | |
tree | 7ddb2bb9ba05ad362c1ede5a5645bec99244040a /package/opkg/0001-Disable-tests-and-manpages.patch | |
parent | a20c15f1812ef50aa63bf050a604012db370bc14 (diff) | |
download | buildroot-872e102386825e0780d12e7d1af6f97c84beb519.tar.gz buildroot-872e102386825e0780d12e7d1af6f97c84beb519.zip |
opkg: bump to 0.2.4 and fix build failure
This commit bumps opkg to 0.2.4, and adds a new patch to fix a build
failure apparently caused by the recent bump of the libtool version:
http://autobuild.buildroot.org/results/5fc/5fc9fa24563213d1ad77e55ab52c8e59bf21055f/
It also refreshes the existing patch, turns it into a Git formatted
patch, and fixes a typo in its title.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/opkg/0001-Disable-tests-and-manpages.patch')
-rw-r--r-- | package/opkg/0001-Disable-tests-and-manpages.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/package/opkg/0001-Disable-tests-and-manpages.patch b/package/opkg/0001-Disable-tests-and-manpages.patch new file mode 100644 index 0000000000..b816766573 --- /dev/null +++ b/package/opkg/0001-Disable-tests-and-manpages.patch @@ -0,0 +1,35 @@ +From 1c8e21e220ed0af6de3ab776d3edf8f0be69e779 Mon Sep 17 00:00:00 2001 +From: "Yann E. MORIN" <yann.morin.1998@free.fr> +Date: Mon, 22 Dec 2014 09:45:08 +0100 +Subject: [PATCH 1/2] Disable tests and manpages + +Tests are forcibly statically linked to libopkg, which does not work in +a shared-only build. + +Since Buildroot does not care about testsuites, just disable building the +tests. Disable manpages at the same time for the same reason. + +Note: dynamically linking with libopkg is also possible, but that would +not be upstreamable (too much changes already in upstream). + +Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> +Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> +--- + Makefile.am | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/Makefile.am b/Makefile.am +index 8baa62c..497b774 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,6 +1,6 @@ + ACLOCAL_AMFLAGS = -I shave -I m4 + +-SUBDIRS = libbb libopkg src tests utils man ++SUBDIRS = libbb libopkg src utils + + + HOST_CPU=@host_cpu@ +-- +2.1.0 + |