summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/gnutls/gnutls/0001-configure.ac-fix-sed-command.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2015-12-04 13:55:49 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-16 12:12:16 +0000
commit2d04c838e1ad57a0c789fcc7ddceb0bd7e96fd95 (patch)
tree1ec10dc4e8c140f175cb1393bb779997e6c453cf /meta/recipes-support/gnutls/gnutls/0001-configure.ac-fix-sed-command.patch
parentcf1eb2b8c0cb564eff6bd2346c40ebd7805ccfc1 (diff)
downloadpoky-2d04c838e1ad57a0c789fcc7ddceb0bd7e96fd95.tar.gz
gnutls: update to 3.4.7
libidn is needed by the new version to compare hostnames. Openssl compatibility is no longer enabled by default, but is required by other packages in oe-core. (From OE-Core rev: 08fb2a4c2eaabdb2944cefefed51d1b95aedbde1) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/gnutls/gnutls/0001-configure.ac-fix-sed-command.patch')
-rw-r--r--meta/recipes-support/gnutls/gnutls/0001-configure.ac-fix-sed-command.patch32
1 files changed, 32 insertions, 0 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
new file mode 100644
index 0000000000..c5b95eb5bf
--- /dev/null
+++ b/meta/recipes-support/gnutls/gnutls/0001-configure.ac-fix-sed-command.patch
@@ -0,0 +1,32 @@
1From 67c638c7e209554d9b19627e9402a20fdabead21 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Fri, 4 Dec 2015 13:19:28 +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
17diff --git a/configure.ac b/configure.ac
18index e634236..dc9e6a8 100644
19--- a/configure.ac
20+++ b/configure.ac
21@@ -549,7 +549,7 @@ if test "$enable_tools" != "no" || test "$enable_doc" != "no"; then
22 dnl replace libopts-generated files with distributed backups, if present
23 missing_baks=
24 for i in ${srcdir}/src/*-args.c.bak ${srcdir}/src/*-args.h.bak; do
25- nam=`echo $i|sed 's/.bak//g'`
26+ nam=`echo $i|sed 's/\.bak$//'`
27 if test -f $i;then
28 cp -f $i $nam
29 else
30--
312.6.2
32