aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2008-05-05 09:21:49 +0000
committerRichard Purdie <richard@openedhand.com>2008-05-05 09:21:49 +0000
commit01bb9af1ec89a16b3ebdc5d3ea77a2e52e553b21 (patch)
tree14bf00f4f3e15691b2898f8f9bd85028c8e41001 /bitbake
parentf715ee6df76b8f6d9e75ce5f9160a25b73f4993c (diff)
downloadopenembedded-core-contrib-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.py2
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:
self.multi_provider_whitelist = (bb.data.getVar("MULTI_PROVIDER_WHITELIST", cfgData, 1) or "").split()
self.scheduler = bb.data.getVar("BB_SCHEDULER", cfgData, 1) or "speed"
self.stamppolicy = bb.data.getVar("BB_STAMP_POLICY", cfgData, 1) or "perfile"
- self.stampwhitelist = bb.data.getVar("BB_STAMP_WHITELIST", cfgData, 1) or []
+ self.stampwhitelist = bb.data.getVar("BB_STAMP_WHITELIST", cfgData, 1) or ""
def reset_runqueue(self):