summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/main.py
diff options
context:
space:
mode:
authorScott Murray <scott.murray@konsulko.com>2022-02-17 17:09:33 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-21 23:37:26 +0000
commit424269caeadd21b01a860d032ca81167c7ce7239 (patch)
tree62b67232f8b358fddac8617ded45df7aa61442a2 /bitbake/lib/bb/main.py
parent09a62d96c76333f8abda1d28156378e42630fd9a (diff)
downloadpoky-424269caeadd21b01a860d032ca81167c7ce7239.tar.gz
bitbake: lib/bb: Replace "abort" usage in task handling
In line with the inclusive language migration defined at: https://wiki.yoctoproject.org/wiki/Inclusive_language replace the use of "abort" with "halt" in code related to handling task failure. (Bitbake rev: 831fb7f2329a3cd95b71e9c85d7d7f0d717f947f) Signed-off-by: Scott Murray <scott.murray@konsulko.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/main.py')
-rwxr-xr-xbitbake/lib/bb/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py
index 639fc1885d..93eda3632e 100755
--- a/bitbake/lib/bb/main.py
+++ b/bitbake/lib/bb/main.py
@@ -127,7 +127,7 @@ def create_bitbake_parser():
127 help="Execute tasks from a specific .bb recipe directly. WARNING: Does " 127 help="Execute tasks from a specific .bb recipe directly. WARNING: Does "
128 "not handle any dependencies from other recipes.") 128 "not handle any dependencies from other recipes.")
129 129
130 parser.add_option("-k", "--continue", action="store_false", dest="abort", default=True, 130 parser.add_option("-k", "--continue", action="store_false", dest="halt", default=True,
131 help="Continue as much as possible after an error. While the target that " 131 help="Continue as much as possible after an error. While the target that "
132 "failed and anything depending on it cannot be built, as much as " 132 "failed and anything depending on it cannot be built, as much as "
133 "possible will be built before stopping.") 133 "possible will be built before stopping.")