summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/augeas/augeas/0001-Add-missing-argument-to-escape.patch
diff options
context:
space:
mode:
authorConstantin Musca <constantinx.musca@intel.com>2013-02-18 14:05:09 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-02-22 06:09:21 -0800
commita0277dd67457530db8b97b88f8ad46a7bbcf8b81 (patch)
tree205443286cf1fcedba86b05cb1b3c0331d08d3a3 /meta/recipes-extended/augeas/augeas/0001-Add-missing-argument-to-escape.patch
parente04afd89be7bbe6f2a71c3efc43abc08f3dd7a91 (diff)
downloadpoky-a0277dd67457530db8b97b88f8ad46a7bbcf8b81.tar.gz
augeas: upgrade to 1.0.0
0001-Add-missing-argument-to-escape.patch: removed - included in the new version remove-gets.patch: not needed anymore add-missing-argz-conditional.patch: added - the Makefiles assume that the argz conditional is present in configure.ac (From OE-Core rev: a711a8617c39b06c9a494d0ceae9f96f65b024f9) Signed-off-by: Constantin Musca <constantinx.musca@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/augeas/augeas/0001-Add-missing-argument-to-escape.patch')
-rw-r--r--meta/recipes-extended/augeas/augeas/0001-Add-missing-argument-to-escape.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/meta/recipes-extended/augeas/augeas/0001-Add-missing-argument-to-escape.patch b/meta/recipes-extended/augeas/augeas/0001-Add-missing-argument-to-escape.patch
deleted file mode 100644
index 3d0d0e3726..0000000000
--- a/meta/recipes-extended/augeas/augeas/0001-Add-missing-argument-to-escape.patch
+++ /dev/null
@@ -1,29 +0,0 @@
1Upstream-Status: Backport
2Signed-off-by: Khem Raj <raj.khem@gmail.com>
3
4From 021ea39f8e400225e2d01b4c62eb9d56404f2ecd Mon Sep 17 00:00:00 2001
5From: Michael Chapman <mike@very.puzzling.org>
6Date: Fri, 16 Dec 2011 21:30:07 +1100
7Subject: [PATCH] Add missing argument to escape()
8
9Fixes ticket #242.
10---
11 src/regexp.c | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14diff --git a/src/regexp.c b/src/regexp.c
15index cf0ea5d..811087d 100644
16--- a/src/regexp.c
17+++ b/src/regexp.c
18@@ -50,7 +50,7 @@ char *regexp_escape(const struct regexp *r) {
19 ret = fa_restrict_alphabet(r->pattern->str, strlen(r->pattern->str),
20 &nre, &nre_len, 2, 1);
21 if (ret == 0) {
22- pat = escape(nre, nre_len);
23+ pat = escape(nre, nre_len, RX_ESCAPES);
24 free(nre);
25 }
26 #endif
27--
281.7.5.4
29