diff options
author | Ash Charles <ashcharles@gmail.com> | 2014-06-05 12:56:05 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-06-06 10:33:19 +0100 |
commit | 66d5be204fd339cc84a0ae92d3923a8c1e6f1389 (patch) | |
tree | fb8ac962924857ba7fff2cc8c582e0910ad797d2 /bitbake/bin/bitbake-layers | |
parent | 36a5f66096116d6a4b7b5c0e2141d5ea8ec500f9 (diff) | |
download | poky-66d5be204fd339cc84a0ae92d3923a8c1e6f1389.tar.gz |
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>
Diffstat (limited to 'bitbake/bin/bitbake-layers')
-rwxr-xr-x | bitbake/bin/bitbake-layers | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/bin/bitbake-layers b/bitbake/bin/bitbake-layers index 302f020ba1..9964040bf7 100755 --- a/bitbake/bin/bitbake-layers +++ b/bitbake/bin/bitbake-layers | |||
@@ -556,7 +556,7 @@ Recipes are listed with the bbappends that apply to them as subitems. | |||
556 | continue | 556 | continue |
557 | 557 | ||
558 | basename = os.path.basename(filename) | 558 | basename = os.path.basename(filename) |
559 | appends = self.bbhandler.cooker.collection.appendlist.get(basename) | 559 | appends = self.bbhandler.cooker.collection.get_file_appends(basename) |
560 | if appends: | 560 | if appends: |
561 | appended.append((basename, list(appends))) | 561 | appended.append((basename, list(appends))) |
562 | else: | 562 | else: |