浏览代码

bitbake: bitbake: show wildcard appends for bitbake-layers

The 'bitbake-layers show-appends' command can use the built-in
get_file_appends() method which correctly identifies bbappends that
include a '%' wildcard in their filename.

(Bitbake rev: 2732dbae67c1945b668c38cc4cc5678c4aafe3d6)

Signed-off-by: Ash Charles <ashcharles@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Ash Charles 11 年之前
父节点
当前提交
66d5be204f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      bitbake/bin/bitbake-layers

+ 1 - 1
bitbake/bin/bitbake-layers

@@ -556,7 +556,7 @@ Recipes are listed with the bbappends that apply to them as subitems.
                 continue
 
             basename = os.path.basename(filename)
-            appends = self.bbhandler.cooker.collection.appendlist.get(basename)
+            appends = self.bbhandler.cooker.collection.get_file_appends(basename)
             if appends:
                 appended.append((basename, list(appends)))
             else: