Browse Source

swupdate.bbclass: fix dependency

The only task running is do_swuimage(). Set
dependencies to this task and not to do_build()

Signed-off-by: Stefano Babic <sbabic@denx.de>
Stefano Babic 9 years ago
parent
commit
3807cb909b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      classes/swupdate.bbclass

+ 1 - 1
classes/swupdate.bbclass

@@ -80,7 +80,7 @@ do_package_write_rpm[noexec] = "1"
 
 python () {
     deps = " " + swupdate_getdepends(d)
-    d.appendVarFlag('do_build', 'depends', deps)
+    d.appendVarFlag('do_swuimage', 'depends', deps)
 }
 
 do_install () {