summaryrefslogtreecommitdiffstats
path: root/meta/classes/rm_work.bbclass
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2013-03-26 17:47:26 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-26 21:19:45 +0000
commit4d56de8018d550b3d181d451900cbfb698d64141 (patch)
tree0c7ff4c9ee5cfc191aec601c0c038d1346ead10b /meta/classes/rm_work.bbclass
parent3c6622e22b0e1b2a8ceea6465ea84c6fb8299518 (diff)
downloadopenembedded-core-contrib-4d56de8018d550b3d181d451900cbfb698d64141.tar.gz
classes/rm_work: rename RM_WORK_WHITELIST to RM_WORK_EXCLUDE
This really functions as a blacklist, not a whitelist, since we are listing recipes to exclude. To avoid any possibility of confusion, since this was a recent addition, rename the variable. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/rm_work.bbclass')
-rw-r--r--meta/classes/rm_work.bbclass10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta/classes/rm_work.bbclass b/meta/classes/rm_work.bbclass
index 54287bf6b3..1642af7936 100644
--- a/meta/classes/rm_work.bbclass
+++ b/meta/classes/rm_work.bbclass
@@ -5,10 +5,10 @@
#
# INHERIT += "rm_work"
#
-# To inhibit rm_work for some recipes, specify them in RM_WORK_WHITELIST.
+# To inhibit rm_work for some recipes, specify them in RM_WORK_EXCLUDE.
# For example, in conf/local.conf:
#
-# RM_WORK_WHITELIST += "icu-native icu busybox"
+# RM_WORK_EXCLUDE += "icu-native icu busybox"
#
# Use the completion scheduler by default when rm_work is active
@@ -19,10 +19,10 @@ RMWORK_ORIG_TASK := "${BB_DEFAULT_TASK}"
BB_DEFAULT_TASK = "rm_work_all"
do_rm_work () {
- # If the recipe name is in the RM_WORK_WHITELIST, skip the recipe.
- for p in ${RM_WORK_WHITELIST}; do
+ # If the recipe name is in the RM_WORK_EXCLUDE, skip the recipe.
+ for p in ${RM_WORK_EXCLUDE}; do
if [ "$p" = "${PN}" ]; then
- bbnote "rm_work: Skipping ${PN} since it is in RM_WORK_WHITELIST"
+ bbnote "rm_work: Skipping ${PN} since it is in RM_WORK_EXCLUDE"
exit 0
fi
done