Forráskód Böngészése

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 8 éve
szülő
commit
7acd62f556
1 módosított fájl, 3 hozzáadás és 7 törlés
  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
 
 }