summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2010-06-04 14:04:37 +0200
committerRichard Purdie <rpurdie@linux.intel.com>2010-07-02 15:41:35 +0100
commit85ca18f60a540354e4b2ba27d29b0270c1ec8d7f (patch)
treea0a6183c64a12878dcae9615fa05d0c562013a50 /bitbake/lib
parent6c37c32773d7bd345f60bedb871a3d3252105569 (diff)
downloadpoky-85ca18f60a540354e4b2ba27d29b0270c1ec8d7f.tar.gz
fetch: commentary typo fix in fetcher_init()
(Bitbake rev: b786f1f60fb50565295e7c8e979b471327d924f3) Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/fetch/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py
index 1640ff84f0..01bcd36539 100644
--- a/bitbake/lib/bb/fetch/__init__.py
+++ b/bitbake/lib/bb/fetch/__init__.py
@@ -153,7 +153,7 @@ def fetcher_init(d):
153 Calls before this must not hit the cache. 153 Calls before this must not hit the cache.
154 """ 154 """
155 pd = persist_data.PersistData(d) 155 pd = persist_data.PersistData(d)
156 # When to drop SCM head revisions controled by user policy 156 # When to drop SCM head revisions controlled by user policy
157 srcrev_policy = bb.data.getVar('BB_SRCREV_POLICY', d, 1) or "clear" 157 srcrev_policy = bb.data.getVar('BB_SRCREV_POLICY', d, 1) or "clear"
158 if srcrev_policy == "cache": 158 if srcrev_policy == "cache":
159 bb.msg.debug(1, bb.msg.domain.Fetcher, "Keeping SRCREV cache due to cache policy of: %s" % srcrev_policy) 159 bb.msg.debug(1, bb.msg.domain.Fetcher, "Keeping SRCREV cache due to cache policy of: %s" % srcrev_policy)