summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/gnutls/gnutls
diff options
context:
space:
mode:
authorAndre McCurdy <armccurdy@gmail.com>2018-08-21 17:43:29 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-08-23 07:50:01 +0100
commit57191c57c28e7b73647fea62d79331451a9a7609 (patch)
treef98124b8cbf7c73e45c15a8dd10c4c515818f251 /meta/recipes-support/gnutls/gnutls
parent48e3b5fa99dee7d0f762f74f57fe441c33bbfb44 (diff)
downloadpoky-57191c57c28e7b73647fea62d79331451a9a7609.tar.gz
gnutls: drop obsolete configure.ac patch
>From gnutls 3.5.8 onwards, the code in configure.ac has been passing "basename $i" to sed, rather than "echo $i". Since the full ${srcdir} path is not being processed, there's no risk of unexpected matches. https://gitlab.com/armcc/gnutls/commit/478179316bc815e1ad518ae318f46e94a13b0e1f (From OE-Core rev: bce938174d1207685c67c40e341a36ab1158e6eb) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/gnutls/gnutls')
-rw-r--r--meta/recipes-support/gnutls/gnutls/0001-configure.ac-fix-sed-command.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-support/gnutls/gnutls/0001-configure.ac-fix-sed-command.patch b/meta/recipes-support/gnutls/gnutls/0001-configure.ac-fix-sed-command.patch
deleted file mode 100644
index b6e7bc9650..0000000000
--- a/meta/recipes-support/gnutls/gnutls/0001-configure.ac-fix-sed-command.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1From eaab55bb6d48643163eebbc9ca575a9ca2a8e03f Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Tue, 21 Feb 2017 17:10:07 +0200
4Subject: [PATCH] configure.ac: fix sed command
5
6The "sed 's/.bak//g'" matchs "bitbake", which would cause strange errors
7when the S contains "bitbake", fix to "sed 's/\.bak$//'`"
8
9Upstream-Status: Pending
10
11Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
12Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
13---
14 configure.ac | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17Index: gnutls-3.5.16/configure.ac
18===================================================================
19--- gnutls-3.5.16.orig/configure.ac
20+++ gnutls-3.5.16/configure.ac
21@@ -955,7 +955,7 @@ YEAR=`date +%Y`
22 AC_SUBST([YEAR], $YEAR)
23
24 for i in ${srcdir}/src/*-args.c.bak ${srcdir}/src/*-args.h.bak; do
25- nam=$(basename $i|sed 's/.bak//g')
26+ nam=$(basename $i|sed 's/\.bak$//')
27 if test "$create_libopts_links" = "yes";then
28 rm -f "src/$nam.stamp"
29 rm -f "src/$nam"