summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/siggen.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/siggen.py')
-rw-r--r--bitbake/lib/bb/siggen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index 66aea79355..03aa08bb94 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -90,7 +90,7 @@ class SignatureGeneratorBasic(SignatureGenerator):
90 self.taints = {} 90 self.taints = {}
91 self.gendeps = {} 91 self.gendeps = {}
92 self.lookupcache = {} 92 self.lookupcache = {}
93 self.pkgnameextract = re.compile("(?P<fn>.*)\..*") 93 self.pkgnameextract = re.compile(r"(?P<fn>.*)\..*")
94 self.basewhitelist = set((data.getVar("BB_HASHBASE_WHITELIST") or "").split()) 94 self.basewhitelist = set((data.getVar("BB_HASHBASE_WHITELIST") or "").split())
95 self.taskwhitelist = None 95 self.taskwhitelist = None
96 self.init_rundepcheck(data) 96 self.init_rundepcheck(data)