summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaul Wold <sgw@linux.intel.com>2012-07-05 14:31:15 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-09 11:38:02 +0100
commite17ae2c830cdd03d23ffed56a384f3a9b4122a2c (patch)
treeea9b694631a3cc5f34bce333d8a15ac9946547bb
parent7890697c8f59fad5878d5ecd644db4dbff6034f6 (diff)
downloadpoky-e17ae2c830cdd03d23ffed56a384f3a9b4122a2c.tar.gz
gnutls: make sure native is patched for gettext version
(From OE-Core rev: 92ede8a994b9a24387d3d7dc79e80705f6be4524) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-support/gnutls/gnutls_2.12.20.bb9
1 files changed, 1 insertions, 8 deletions
diff --git a/meta/recipes-support/gnutls/gnutls_2.12.20.bb b/meta/recipes-support/gnutls/gnutls_2.12.20.bb
index 248c90f7a1..010f179b9f 100644
--- a/meta/recipes-support/gnutls/gnutls_2.12.20.bb
+++ b/meta/recipes-support/gnutls/gnutls_2.12.20.bb
@@ -5,15 +5,8 @@ PR = "${INC_PR}.0"
5SRC_URI += "file://gnutls-openssl.patch \ 5SRC_URI += "file://gnutls-openssl.patch \
6 file://correct_rpl_gettimeofday_signature.patch \ 6 file://correct_rpl_gettimeofday_signature.patch \
7 file://configure-fix.patch \ 7 file://configure-fix.patch \
8 ${@['', 'file://fix-gettext-version.patch'][bb.data.inherits_class('native', d) or (not ((d.getVar("INCOMPATIBLE_LICENSE", True) or "").find("GPLv3") != -1))]} \
8 " 9 "
9 10
10SRC_URI[md5sum] = "f1dea97da5d4dcdbc675720c9aad9ee3" 11SRC_URI[md5sum] = "f1dea97da5d4dcdbc675720c9aad9ee3"
11SRC_URI[sha256sum] = "4884eafcc8383ed23209199bbc72ad04f4eb94955a50a594125ff34c6889c564" 12SRC_URI[sha256sum] = "4884eafcc8383ed23209199bbc72ad04f4eb94955a50a594125ff34c6889c564"
12
13python() {
14 if not ((d.getVar("INCOMPATIBLE_LICENSE", True) or "").find("GPLv3") != -1):
15 # if GPLv3 add patch
16 src_uri = (d.getVar("SRC_URI", False) or "").split()
17 src_uri.append("file://fix-gettext-version.patch")
18 d.setVar("SRC_URI", " ".join(src_uri))
19}