From 5025f89c01c7eda2016061b1517f5d346951c8f5 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Fri, 2 Nov 2018 14:04:39 +0100 Subject: [PATCH] shell: Drop pointless --target parameter The target plays no role when invoking the shell because bitbake is not called. Signed-off-by: Jan Kiszka --- kas/shell.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/kas/shell.py b/kas/shell.py index c7d0bff..44c55b7 100644 --- a/kas/shell.py +++ b/kas/shell.py @@ -56,9 +56,6 @@ class Shell: sh_prs.add_argument('config', help='Config file') - sh_prs.add_argument('--target', - action='append', - help='Select target to build') sh_prs.add_argument('--skip', help='Skip build steps', default=[]) @@ -79,7 +76,7 @@ class Shell: return False ctx = create_global_context() - ctx.config = Config(args.config, args.target, None) + ctx.config = Config(args.config, None, None) macro = Macro()