diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2014-10-08 01:01:18 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-10-10 12:47:35 +0200 |
commit | ecc1d76333d3dac3169281a40e50cb16af90cfc1 (patch) | |
tree | e99566c11721f29afd0ceaaa628f40c86777970e /meta-oe/recipes-connectivity | |
parent | c8a670fea52b8bd7c9a0476c82cb49bedb8b35f3 (diff) | |
download | meta-openembedded-ecc1d76333d3dac3169281a40e50cb16af90cfc1.tar.gz |
krb5: use BP for the tarball
Otherwise do_unpack failed when multilib:
tar (child): /path/to/lib32-krb5-1.12.2.tar.gz: Cannot open: No such file or directory
And do_patch error:
ERROR: Command Error: exit status: 1 Output:
Applying patch 0001-aclocal-Add-parameter-to-disable-keyutils-detection.patch
can't find file to patch at input line 15
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-connectivity')
-rw-r--r-- | meta-oe/recipes-connectivity/krb5/krb5_1.12.2.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-connectivity/krb5/krb5_1.12.2.bb b/meta-oe/recipes-connectivity/krb5/krb5_1.12.2.bb index 0b14d3cdf..d3c643cec 100644 --- a/meta-oe/recipes-connectivity/krb5/krb5_1.12.2.bb +++ b/meta-oe/recipes-connectivity/krb5/krb5_1.12.2.bb | |||
@@ -32,7 +32,7 @@ SRC_URI = "http://web.mit.edu/kerberos/dist/${BPN}/${SHRT_VER}/${BP}-signed.tar | |||
32 | SRC_URI[md5sum] = "357f1312b7720a0a591e22db0f7829fe" | 32 | SRC_URI[md5sum] = "357f1312b7720a0a591e22db0f7829fe" |
33 | SRC_URI[sha256sum] = "09bd180107b5c2b3b7378c57c023fb02a103d4cac39d6f2dd600275d7a4f3744" | 33 | SRC_URI[sha256sum] = "09bd180107b5c2b3b7378c57c023fb02a103d4cac39d6f2dd600275d7a4f3744" |
34 | 34 | ||
35 | S = "${WORKDIR}/${P}/src/" | 35 | S = "${WORKDIR}/${BP}/src/" |
36 | 36 | ||
37 | PACKAGECONFIG ??= "openssl" | 37 | PACKAGECONFIG ??= "openssl" |
38 | PACKAGECONFIG[libedit] = "--with-libedit,--without-libedit,libedit" | 38 | PACKAGECONFIG[libedit] = "--with-libedit,--without-libedit,libedit" |
@@ -55,7 +55,7 @@ FILES_${PN}-dbg += "${libdir}/krb5/plugins/*/.debug" | |||
55 | 55 | ||
56 | krb5_do_unpack() { | 56 | krb5_do_unpack() { |
57 | # ${P}-signed.tar contains ${P}.tar.gz.asc and ${P}.tar.gz | 57 | # ${P}-signed.tar contains ${P}.tar.gz.asc and ${P}.tar.gz |
58 | tar xzf ${WORKDIR}/${P}.tar.gz -C ${WORKDIR}/ | 58 | tar xzf ${WORKDIR}/${BP}.tar.gz -C ${WORKDIR}/ |
59 | } | 59 | } |
60 | 60 | ||
61 | python do_unpack() { | 61 | python do_unpack() { |