From 2a86e0295a606ce90776ffe5dd3c5303e18e65a3 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 11 Sep 2006 11:34:00 +0000 Subject: bitbake/lib/bb/shell.py: bitbake/bin/bitbake: Split collect_bbfiles into collect_bbfiles and parse_bbfiles Allow -b option to accept an expression which uniquely identifies a .bb file instead of requiring a full path Disable BBFILES support within .bb files (it was already non-functional) --- lib/bb/shell.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/bb') diff --git a/lib/bb/shell.py b/lib/bb/shell.py index 7b6d5415e..ac49d5c2c 100644 --- a/lib/bb/shell.py +++ b/lib/bb/shell.py @@ -422,7 +422,8 @@ SRC_URI = "" cooker.status.ignored_dependencies = set( ignore.split() ) cooker.handleCollections( data.getVar("BBFILE_COLLECTIONS", cooker.configuration.data, 1) ) - cooker.collect_bbfiles( cooker.myProgressCallback ) + (filelist, masked) = cooker.collect_bbfiles() + cooker.parse_bbfiles(filelist, masked, cooker.myProgressCallback) cooker.buildDepgraph() global parsed parsed = True -- cgit 1.2.3-korg