summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/opkg-utils
diff options
context:
space:
mode:
authorJussi Kukkonen <jussi.kukkonen@intel.com>2017-03-16 11:15:36 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-03-16 22:11:32 +0000
commitf751a52a5899ce0d7d66c68549cde538e041bce2 (patch)
tree441ef91286a09c8a2ea7a7902eea6ea0de7d8f45 /meta/recipes-devtools/opkg-utils
parentf3d8addbef5059d1972218d606b65bed0136517d (diff)
downloadpoky-f751a52a5899ce0d7d66c68549cde538e041bce2.tar.gz
opkg-utils: Remove unused patches
0001-update-alternatives-warn-when-multiple-providers-hav.patch was removed from SRC_URI without mention in commit 60c9a9704. 001-Makefile-use-defined-bindir-and-mandir-as-installati.patch was removed from SRC_URI in d6b04e121. Current opkg does not need either patch. (From OE-Core rev: 789ec510495ca6eab379ec829e3013c977236966) Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/opkg-utils')
-rw-r--r--meta/recipes-devtools/opkg-utils/opkg-utils/0001-Makefile-use-defined-bindir-and-mandir-as-installati.patch30
-rw-r--r--meta/recipes-devtools/opkg-utils/opkg-utils/0001-update-alternatives-warn-when-multiple-providers-hav.patch26
2 files changed, 0 insertions, 56 deletions
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils/0001-Makefile-use-defined-bindir-and-mandir-as-installati.patch b/meta/recipes-devtools/opkg-utils/opkg-utils/0001-Makefile-use-defined-bindir-and-mandir-as-installati.patch
deleted file mode 100644
index 6259f0086f..0000000000
--- a/meta/recipes-devtools/opkg-utils/opkg-utils/0001-Makefile-use-defined-bindir-and-mandir-as-installati.patch
+++ /dev/null
@@ -1,30 +0,0 @@
1From af4a6e4666264661769e32874e9654e02e5eb019 Mon Sep 17 00:00:00 2001
2From: Alejandro del Castillo <alejandro.delcastillo@ni.com>
3Date: Thu, 22 Dec 2016 16:15:56 -0600
4Subject: [opkg-utils PATCH] Makefile: use defined bindir and mandir as
5 installation dirs
6
7Upstream-Status: Pending
8
9Signed-off-by: Alejandro del Castillo <alejandro.delcastillo@ni.com>
10---
11 Makefile | 3 ---
12 1 file changed, 3 deletions(-)
13
14diff --git a/Makefile b/Makefile
15index 92b45f1..9f0531c 100644
16--- a/Makefile
17+++ b/Makefile
18@@ -5,9 +5,6 @@ UTILS = opkg-build opkg-unbuild opkg-make-index opkg.py opkg-list-fields \
19 MANPAGES = opkg-build.1
20
21 DESTDIR=
22-PREFIX=/usr/local
23-bindir=$(PREFIX)/bin
24-mandir=$(PREFIX)/man
25
26 .SUFFIXES: .1
27
28--
292.7.4
30
diff --git a/meta/recipes-devtools/opkg-utils/opkg-utils/0001-update-alternatives-warn-when-multiple-providers-hav.patch b/meta/recipes-devtools/opkg-utils/opkg-utils/0001-update-alternatives-warn-when-multiple-providers-hav.patch
deleted file mode 100644
index afce1e1cc2..0000000000
--- a/meta/recipes-devtools/opkg-utils/opkg-utils/0001-update-alternatives-warn-when-multiple-providers-hav.patch
+++ /dev/null
@@ -1,26 +0,0 @@
1Subject: update-alternatives: warn when multiple providers have the same priority
2
3Upstream-Status: Pending
4
5Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
6---
7 update-alternatives | 3 +++
8 1 file changed, 3 insertions(+)
9
10diff --git a/update-alternatives b/update-alternatives
11index ca01d5d..ffad853 100644
12--- a/update-alternatives
13+++ b/update-alternatives
14@@ -90,6 +90,9 @@ add_alt() {
15 local path="$2"
16 local priority="$3"
17 remove_alt $name $path
18+ if grep -qw "$priority" $ad/$name; then
19+ echo "Warn: update-alternatives: $name has multiple providers with the same priority, please check $ad/$name for details"
20+ fi
21 echo "$path $priority" >> $ad/$name
22 }
23
24--
252.8.3
26