diff options
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 2ecd060093..496c8a7f68 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -337,8 +337,8 @@ python do_kernel_configcheck() { | |||
337 | 337 | ||
338 | try: | 338 | try: |
339 | configs = subprocess.check_output(['scc', '--configs', '-o', s + '/.kernel-meta'], env=env).decode('utf-8') | 339 | configs = subprocess.check_output(['scc', '--configs', '-o', s + '/.kernel-meta'], env=env).decode('utf-8') |
340 | except subprocess.CalledProcessError: | 340 | except subprocess.CalledProcessError as e: |
341 | bb.fatal( "Cannot gather config fragments for audit: %s" % configs) | 341 | bb.fatal( "Cannot gather config fragments for audit: %s" % e.output.decode("utf-8") ) |
342 | 342 | ||
343 | try: | 343 | try: |
344 | subprocess.check_call(['kconf_check', '--report', '-o', | 344 | subprocess.check_call(['kconf_check', '--report', '-o', |