summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/parse/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/parse/__init__.py')
-rw-r--r--bitbake/lib/bb/parse/__init__.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/bitbake/lib/bb/parse/__init__.py b/bitbake/lib/bb/parse/__init__.py
index bf5ed05e7f..2303f15b9e 100644
--- a/bitbake/lib/bb/parse/__init__.py
+++ b/bitbake/lib/bb/parse/__init__.py
@@ -49,8 +49,11 @@ class ParseError(Exception):
49 else: 49 else:
50 return "ParseError in %s: %s" % (self.filename, self.msg) 50 return "ParseError in %s: %s" % (self.filename, self.msg)
51 51
52class SkipPackage(Exception): 52class SkipRecipe(Exception):
53 """Exception raised to skip this package""" 53 """Exception raised to skip this recipe"""
54
55class SkipPackage(SkipRecipe):
56 """Exception raised to skip this recipe (use SkipRecipe in new code)"""
54 57
55__mtime_cache = {} 58__mtime_cache = {}
56def cached_mtime(f): 59def cached_mtime(f):