summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorAsh Charles <ashcharles@gmail.com>2014-06-05 12:56:05 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-06-06 10:33:14 +0100
commit2732dbae67c1945b668c38cc4cc5678c4aafe3d6 (patch)
tree54f96e95f9830d3e35e7440692fc176e98d030bf /bin
parent8271e61a2fbddd3fc49556829675478d7505d58f (diff)
downloadbitbake-contrib-2732dbae67c1945b668c38cc4cc5678c4aafe3d6.tar.gz
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. Signed-off-by: Ash Charles <ashcharles@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/bitbake-layers2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bitbake-layers b/bin/bitbake-layers
index 302f020ba..9964040bf 100755
--- a/bin/bitbake-layers
+++ b/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: