mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
bitbake: toaster: fix html5 compliance
This patch brings needed changes in all views so that each view passes the HTML5 compliance test by the W3C Markup Service. (Bitbake rev: 6e60ed8ab71e4300ab571f42b7af5011086df697) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
35d75c8352
commit
c5a16235b8
@@ -556,7 +556,7 @@ class Recipe(models.Model):
|
||||
return "Recipe " + self.name + ":" + self.version
|
||||
|
||||
def get_local_path(self):
|
||||
if settings.MANAGED and self.layer_version.build.project is not None:
|
||||
if settings.MANAGED and self.layer_version.build is not None and self.layer_version.build.project is not None:
|
||||
# strip any tag prefixes ('virtual:native:')
|
||||
layer_path=self.layer_version.layer.local_path.split(":")[-1]
|
||||
recipe_path=self.file_path.split(":")[-1]
|
||||
|
||||
Reference in New Issue
Block a user