summaryrefslogtreecommitdiffstats
path: root/scripts/lib
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib')
-rw-r--r--scripts/lib/recipetool/append.py2
-rw-r--r--scripts/lib/recipetool/create.py2
-rw-r--r--scripts/lib/recipetool/newappend.py2
-rw-r--r--scripts/lib/recipetool/setvar.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/scripts/lib/recipetool/append.py b/scripts/lib/recipetool/append.py
index 867d55a23b..558fd25ac5 100644
--- a/scripts/lib/recipetool/append.py
+++ b/scripts/lib/recipetool/append.py
@@ -435,7 +435,7 @@ def target_path(targetpath):
435 return targetpath 435 return targetpath
436 436
437 437
438def register_command(subparsers): 438def register_commands(subparsers):
439 common = argparse.ArgumentParser(add_help=False) 439 common = argparse.ArgumentParser(add_help=False)
440 common.add_argument('-m', '--machine', help='Make bbappend changes specific to a machine only', metavar='MACHINE') 440 common.add_argument('-m', '--machine', help='Make bbappend changes specific to a machine only', metavar='MACHINE')
441 common.add_argument('-w', '--wildcard-version', help='Use wildcard to make the bbappend apply to any recipe version', action='store_true') 441 common.add_argument('-w', '--wildcard-version', help='Use wildcard to make the bbappend apply to any recipe version', action='store_true')
diff --git a/scripts/lib/recipetool/create.py b/scripts/lib/recipetool/create.py
index 15aa9bdbb3..2d750465d1 100644
--- a/scripts/lib/recipetool/create.py
+++ b/scripts/lib/recipetool/create.py
@@ -436,7 +436,7 @@ def convert_debian(debpath):
436 return values 436 return values
437 437
438 438
439def register_command(subparsers): 439def register_commands(subparsers):
440 parser_create = subparsers.add_parser('create', 440 parser_create = subparsers.add_parser('create',
441 help='Create a new recipe', 441 help='Create a new recipe',
442 description='Creates a new recipe from a source tree') 442 description='Creates a new recipe from a source tree')
diff --git a/scripts/lib/recipetool/newappend.py b/scripts/lib/recipetool/newappend.py
index 4eeac0e943..f9b8d85ecf 100644
--- a/scripts/lib/recipetool/newappend.py
+++ b/scripts/lib/recipetool/newappend.py
@@ -97,7 +97,7 @@ def newappend(args):
97 print(append_path) 97 print(append_path)
98 98
99 99
100def register_command(subparsers): 100def register_commands(subparsers):
101 parser = subparsers.add_parser('newappend', 101 parser = subparsers.add_parser('newappend',
102 help='Create a bbappend for the specified target in the specified layer') 102 help='Create a bbappend for the specified target in the specified layer')
103 parser.add_argument('-w', '--wildcard-version', help='Use wildcard to make the bbappend apply to any recipe version', action='store_true') 103 parser.add_argument('-w', '--wildcard-version', help='Use wildcard to make the bbappend apply to any recipe version', action='store_true')
diff --git a/scripts/lib/recipetool/setvar.py b/scripts/lib/recipetool/setvar.py
index 18e3281b0e..657d2b6a7b 100644
--- a/scripts/lib/recipetool/setvar.py
+++ b/scripts/lib/recipetool/setvar.py
@@ -62,7 +62,7 @@ def setvar(args):
62 return 0 62 return 0
63 63
64 64
65def register_command(subparsers): 65def register_commands(subparsers):
66 parser_setvar = subparsers.add_parser('setvar', 66 parser_setvar = subparsers.add_parser('setvar',
67 help='Set a variable within a recipe', 67 help='Set a variable within a recipe',
68 description='Adds/updates the value a variable is set to in a recipe') 68 description='Adds/updates the value a variable is set to in a recipe')