Explorar el Código

Revert "Fix build for swupdate_git"

This reverts commit 4df50bd2ecf574b5857a0569a21e7cdcd55f5231.
swupdate_git has its own do_compile function which overrides the swupdate.inc
one anyhow.

Signed-off-by: Diego Rondini <diego.rondini@kynetics.com>
Diego Rondini hace 8 años
padre
commit
7acd62f556
Se han modificado 1 ficheros con 3 adiciones y 7 borrados
  1. 3 7
      recipes-support/swupdate/swupdate.inc

+ 3 - 7
recipes-support/swupdate/swupdate.inc

@@ -89,13 +89,9 @@ do_configure () {
 
 do_compile() {
   unset LDFLAGS
-  if [ "${@bb.utils.vercmp_string('${PV}', 'git')}" = "1"  ]; then
-    oe_runmake
-  else
-    oe_runmake swupdate_unstripped progress_unstripped
-    cp swupdate_unstripped swupdate
-    cp progress_unstripped progress
-  fi
+  oe_runmake swupdate_unstripped progress_unstripped
+  cp swupdate_unstripped swupdate
+  cp progress_unstripped progress
 
 }