aboutsummaryrefslogtreecommitdiffstats
path: root/bin/bitbake
diff options
context:
space:
mode:
authorMichael 'Mickey' Lauer <mickey@vanille-media.de>2005-05-18 13:44:02 +0000
committerMichael 'Mickey' Lauer <mickey@vanille-media.de>2005-05-18 13:44:02 +0000
commitb560d71c3e2eb227c0a31a0bddad01d27926a6d3 (patch)
tree459475f54b92a02be09ecacbc89520b3c67f13a6 /bin/bitbake
parent81efd77987f6decf256967fa16521a40c14d3518 (diff)
downloadbitbake-b560d71c3e2eb227c0a31a0bddad01d27926a6d3.tar.gz
add missing copyright and fix __ignored_dependencies scoping problem
Diffstat (limited to 'bin/bitbake')
-rwxr-xr-xbin/bitbake5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/bitbake b/bin/bitbake
index 40f4b0cc1..a23a17189 100755
--- a/bin/bitbake
+++ b/bin/bitbake
@@ -4,6 +4,7 @@
#
# Copyright (C) 2003, 2004 Chris Larson
# Copyright (C) 2003, 2004 Phil Blundell
+# Copyright (C) 2003 - 2005 Michael 'Mickey' Lauer
# Copyright (C) 2005 Holger Hans Peter Freyther
# Copyright (C) 2005 ROAD GmbH
#
@@ -37,7 +38,6 @@ __build_path = []
__preferred = {}
__world_target = Set()
-__ignored_dependencies = Set()
__stats = {}
@@ -640,7 +640,8 @@ if __name__ == "__main__":
printStats()
ignore = bb.data.getVar("ASSUME_PROVIDED", make.cfg, 1) or ""
- __ignored_dependencies = ignore.split()
+ global __ignored_dependencies
+ __ignored_dependencies = Set( ignore.split() )
collections = bb.data.getVar("BBFILE_COLLECTIONS", make.cfg, 1)
if collections: