summaryrefslogtreecommitdiffstats
path: root/lib/bb/data_smart.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-30 15:55:37 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-30 16:31:23 +0100
commit98d9e6e0f514a7cb7da1d99bf4bd5602b89426d6 (patch)
treecac235bd6659429a5feb17dd3e4a9872ba23ee77 /lib/bb/data_smart.py
parentf63b61f8997862439519f474cc09f3e05e95288c (diff)
downloadbitbake-contrib-98d9e6e0f514a7cb7da1d99bf4bd5602b89426d6.tar.gz
event: Add SkipRecipe event to replace SkipPackage
In the depths of time we were rather confused about naming. bb files are recipes, the event to skip parsing them should be SkipRecipe, not SkipPackage. This changes bitbake to use the better name but leaves the other around for now. We can therefore start removing references to it from the metadata. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/data_smart.py')
-rw-r--r--lib/bb/data_smart.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/data_smart.py b/lib/bb/data_smart.py
index 707029de9..3d773b1d6 100644
--- a/lib/bb/data_smart.py
+++ b/lib/bb/data_smart.py
@@ -334,7 +334,7 @@ class DataSmart(MutableMapping):
break
except ExpansionError:
raise
- except bb.parse.SkipPackage:
+ except bb.parse.SkipRecipe:
raise
except Exception as exc:
raise ExpansionError(varname, s, exc)