From 66d5be204fd339cc84a0ae92d3923a8c1e6f1389 Mon Sep 17 00:00:00 2001 From: Ash Charles Date: Thu, 5 Jun 2014 12:56:05 -0700 Subject: 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 Signed-off-by: Richard Purdie --- bitbake/bin/bitbake-layers | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/bin') 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. 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: -- cgit v1.2.3-54-g00ecf