summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/opkg/opkg
diff options
context:
space:
mode:
authorPaul Barker <paul@paulbarker.me.uk>2013-07-29 08:28:32 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-08-03 10:33:04 +0100
commit48763e9e4a7bad0b1ab38abdadd60318484be3c6 (patch)
tree8ed19c1f0b3be66543d64f0b1f5fa5fc87c3539f /meta/recipes-devtools/opkg/opkg
parentf890c73027fea3218d128fdade69f69b8783d895 (diff)
downloadpoky-48763e9e4a7bad0b1ab38abdadd60318484be3c6.tar.gz
opkg: Bump SRCREV as patch has been applied upstream
The previous patch to fix the installation of libopkg headers has been accepted upstream and is the next commit after the SRCREV used by the opkg recipe. Therefore the patch can be replaced by a simple update of the SRCREV. (From OE-Core rev: e14df11795a03da4bb36f5172edbf9ca7e8ba681) Signed-off-by: Paul Barker <paul@paulbarker.me.uk> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/opkg/opkg')
-rw-r--r--meta/recipes-devtools/opkg/opkg/0001-Fix-libopkg-header-installation.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta/recipes-devtools/opkg/opkg/0001-Fix-libopkg-header-installation.patch b/meta/recipes-devtools/opkg/opkg/0001-Fix-libopkg-header-installation.patch
deleted file mode 100644
index 784c4128c5..0000000000
--- a/meta/recipes-devtools/opkg/opkg/0001-Fix-libopkg-header-installation.patch
+++ /dev/null
@@ -1,32 +0,0 @@
1From 79a40cc4c3b5d6f8a90d9dc0ac5d2c40983764f7 Mon Sep 17 00:00:00 2001
2From: Paul Barker <paul@paulbarker.me.uk>
3Date: Sun, 16 Jun 2013 23:27:27 +0100
4Subject: [PATCH] Fix libopkg header installation.
5
6When opkg is built outside the source directory, libopkg headers aren't all
7installed as the search path for headers only includes the directory that make
8is being ran in, not the source directory. So we fix this by adding
9$(srcdir)/*.h to the list of header files to install.
10
11Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
12Upstream-Status: Submitted
13---
14 libopkg/Makefile.am | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/libopkg/Makefile.am b/libopkg/Makefile.am
18index 043c5c4..b6f4f7b 100644
19--- a/libopkg/Makefile.am
20+++ b/libopkg/Makefile.am
21@@ -2,7 +2,7 @@
22 AM_CFLAGS=-Wall -DHOST_CPU_STR=\"@host_cpu@\" -DBUILD_CPU=@build_cpu@ -DLIBDIR=\"@libdir@\" -DOPKGLIBDIR=\"@opkglibdir@\" -DOPKGETCDIR=\"@opkgetcdir@\" -DOPKGLOCKFILE=\"@opkglockfile@\" -DDATADIR=\"@datadir@\" -I$(top_srcdir) $(BIGENDIAN_CFLAGS) $(CURL_CFLAGS) $(GPGME_CFLAGS) $(PATHFINDER_CFLAGS)
23
24 libopkg_includedir=$(includedir)/libopkg
25-libopkg_include_HEADERS= *.h
26+libopkg_include_HEADERS= *.h $(srcdir)/*.h
27
28
29 opkg_libcore_sources = \
30--
311.8.3
32