summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorChan Wei Sern <wei.sern.chan@intel.com>2014-05-13 01:58:00 +0800
committerTom Zanussi <tom.zanussi@intel.com>2014-05-12 13:44:42 -0500
commit1706db5d06238c1f74643f37dca055a52b1cfc7f (patch)
tree109d95ad666fe5a2bb3eae739704859176ac777b /common
parentfc7b8947c9f93091216c636c19223e0c849d218f (diff)
downloadmeta-intel-1706db5d06238c1f74643f37dca055a52b1cfc7f.tar.gz
meta-intel/common: Added do_unpack_append() to Calgary Corpus recipe
Added do_unpack_append() to fix issue caused by "patches" folder that is auto-generated in do_unpack() step. Fix the issue by removing "patches" folder in the calgary corpus tarball. Signed-off-by: Chan Wei Sern <wei.sern.chan@intel.com> Signed-off-by: Ong Boon Leong <boon.leong.ong@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@intel.com> Acked-By: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'common')
-rw-r--r--common/recipes-corpus/calgary-corpus/calgary-corpus.bb5
1 files changed, 5 insertions, 0 deletions
diff --git a/common/recipes-corpus/calgary-corpus/calgary-corpus.bb b/common/recipes-corpus/calgary-corpus/calgary-corpus.bb
index 5d2c66df..8c3aea8a 100644
--- a/common/recipes-corpus/calgary-corpus/calgary-corpus.bb
+++ b/common/recipes-corpus/calgary-corpus/calgary-corpus.bb
@@ -17,6 +17,11 @@ do_unpack () {
17 tar -xf ${DL_DIR}/calgary.tar.gz -C ${WORKDIR}/corpus 17 tar -xf ${DL_DIR}/calgary.tar.gz -C ${WORKDIR}/corpus
18} 18}
19 19
20
21do_unpack_append () {
22 rm -rf ${WORKDIR}/corpus/patches
23}
24
20FILES_${PN} = "/lib/firmware/*" 25FILES_${PN} = "/lib/firmware/*"
21 26
22do_install () { 27do_install () {