diff options
author | Richard Purdie <richard@openedhand.com> | 2008-05-05 09:21:49 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-05-05 09:21:49 +0000 |
commit | 01bb9af1ec89a16b3ebdc5d3ea77a2e52e553b21 (patch) | |
tree | 14bf00f4f3e15691b2898f8f9bd85028c8e41001 /bitbake | |
parent | f715ee6df76b8f6d9e75ce5f9160a25b73f4993c (diff) | |
download | poky-01bb9af1ec89a16b3ebdc5d3ea77a2e52e553b21.tar.gz |
runqueue.py: Fix default whitelist variable value
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4413 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 3560996b9d..b9c1399efe 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py | |||
@@ -150,7 +150,7 @@ class RunQueue: | |||
150 | self.multi_provider_whitelist = (bb.data.getVar("MULTI_PROVIDER_WHITELIST", cfgData, 1) or "").split() | 150 | self.multi_provider_whitelist = (bb.data.getVar("MULTI_PROVIDER_WHITELIST", cfgData, 1) or "").split() |
151 | self.scheduler = bb.data.getVar("BB_SCHEDULER", cfgData, 1) or "speed" | 151 | self.scheduler = bb.data.getVar("BB_SCHEDULER", cfgData, 1) or "speed" |
152 | self.stamppolicy = bb.data.getVar("BB_STAMP_POLICY", cfgData, 1) or "perfile" | 152 | self.stamppolicy = bb.data.getVar("BB_STAMP_POLICY", cfgData, 1) or "perfile" |
153 | self.stampwhitelist = bb.data.getVar("BB_STAMP_WHITELIST", cfgData, 1) or [] | 153 | self.stampwhitelist = bb.data.getVar("BB_STAMP_WHITELIST", cfgData, 1) or "" |
154 | 154 | ||
155 | def reset_runqueue(self): | 155 | def reset_runqueue(self): |
156 | 156 | ||