浏览代码

swupdate.bbclass: drop suffix from class name

With commit [1] in bitbake the parsing of the swupdate-bbclass fails
with message:

    ERROR: ParseError at .../meta-swupdate/classes-recipe/swupdate.bbclass:36: Could not inherit file swupdate-common.bbclass

Remove the .bbclass suffix from the inherit statement to resolve this issue.
No other inherit statements seem to use suffix.

[1] https://git.openembedded.org/bitbake/commit/?id=f7c55c8147329670fd5bc55b1ae3f47f25b89bab

Signed-off-by: Peter Bergin <peter@berginkonsult.se>
Peter Bergin 3 年之前
父节点
当前提交
484ea6afac
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      classes/swupdate.bbclass

+ 1 - 1
classes/swupdate.bbclass

@@ -33,7 +33,7 @@
 #   corresponding image files cannot be found in the ${DEPLOY_DIR_IMAGE} folder, an
 #   image file with exactly the name as specified in SWUPDATE_IMAGES is searched for.
 
-inherit swupdate-common.bbclass
+inherit swupdate-common
 inherit image-artifact-names
 
 S = "${WORKDIR}/${PN}"