libkas: Remove parameters from get_build_environ()

All of them can be retrieved from the global context.

Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
This commit is contained in:
Jan Kiszka
2018-08-24 19:18:05 +02:00
committed by Daniel Wagner
parent 448107781e
commit 7937c1963e
2 changed files with 5 additions and 5 deletions

View File

@@ -149,7 +149,7 @@ class SetupEnviron(Command):
return 'setup_environ'
def execute(self, ctx):
ctx.environ.update(get_build_environ(ctx, ctx.build_dir))
ctx.environ.update(get_build_environ())
class WriteBBConfig(Command):