summaryrefslogtreecommitdiffstats
path: root/recipes-dpaa
diff options
context:
space:
mode:
authorFabio Berton <fabio.berton@ossystems.com.br>2016-11-30 11:07:12 -0200
committerOtavio Salvador <otavio@ossystems.com.br>2016-12-06 16:25:47 -0200
commita21303cd63e795a99923553e10d04237394c79a9 (patch)
tree3a53928b0a9e3e2ad4f0a1b83d676e3d0c864c85 /recipes-dpaa
parentab0d1823d90b5b7b06e8035087d9aa734084987d (diff)
downloadmeta-freescale-a21303cd63e795a99923553e10d04237394c79a9.tar.gz
fmlib: Fix kernel source dependency
fmlib needs kernel source to compile, to satisfy this dependency do_compile task needs to run after virtual/kernel do_shared_workdir task. Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-dpaa')
-rw-r--r--recipes-dpaa/fmlib/fmlib_git.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/recipes-dpaa/fmlib/fmlib_git.bb b/recipes-dpaa/fmlib/fmlib_git.bb
index 8b8ba6df..0aaa4d00 100644
--- a/recipes-dpaa/fmlib/fmlib_git.bb
+++ b/recipes-dpaa/fmlib/fmlib_git.bb
@@ -5,7 +5,6 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3f16fa8e677e45af3127c5c4bafc3c00"
5 5
6PR = "r1" 6PR = "r1"
7 7
8DEPENDS += "virtual/kernel"
9DEPENDS_virtclass-native = "" 8DEPENDS_virtclass-native = ""
10 9
11SRC_URI = "git://git.freescale.com/ppc/sdk/fmlib.git;branch=sdk-v2.0.x" 10SRC_URI = "git://git.freescale.com/ppc/sdk/fmlib.git;branch=sdk-v2.0.x"
@@ -39,6 +38,8 @@ do_install_virtclass-native () {
39 cp -rf ${S}/include/* ${D}/${includedir} 38 cp -rf ${S}/include/* ${D}/${includedir}
40} 39}
41 40
41do_compile[depends] += "virtual/kernel:do_shared_workdir"
42
42ALLOW_EMPTY_${PN} = "1" 43ALLOW_EMPTY_${PN} = "1"
43 44
44BBCLASSEXTEND = "native" 45BBCLASSEXTEND = "native"