From: Richard Purdie Date: Mon, 5 May 2008 09:21:49 +0000 (+0000) Subject: runqueue.py: Fix default whitelist variable value X-Git-Tag: 2011-1~9048 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=01bb9af1ec89a16b3ebdc5d3ea77a2e52e553b21;p=openembedded-core.git runqueue.py: Fix default whitelist variable value git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4413 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- 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):