summaryrefslogtreecommitdiffstats
path: root/meta/files
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-08-11 16:45:07 +1200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-08-17 10:35:41 +0100
commit99d109cdbc1dd3053bbb9f177bb14251745d49f0 (patch)
tree8f9640f830a7859a4d21f329f1b0d647b38688e3 /meta/files
parent64ffbd4869fecc053cd158c2c70cf6575c31245e (diff)
downloadpoky-99d109cdbc1dd3053bbb9f177bb14251745d49f0.tar.gz
classes/populate_sdk_ext: drop duplicated error message
The preparation script itself prints out an error on failure, and we aren't redirecting its output anymore, so we no longer need to print out a message here when it fails. At the same time, make the message printed out by the script a little clearer - we're just writing the log out to the file, we shouldn't give the user an expectation that there will be extra details in there (other than the output produced by oe-init-build-env there won't be). (From OE-Core rev: 80dfaf40e087b34d6360188df372c1c3805a00bd) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/files')
-rw-r--r--meta/files/ext-sdk-prepare.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/files/ext-sdk-prepare.py b/meta/files/ext-sdk-prepare.py
index 8b15982843..78c1d16304 100644
--- a/meta/files/ext-sdk-prepare.py
+++ b/meta/files/ext-sdk-prepare.py
@@ -59,7 +59,7 @@ def main():
59 for line in f: 59 for line in f:
60 logf.write(line) 60 logf.write(line)
61 if ret: 61 if ret:
62 print('ERROR: SDK preparation failed: see %s' % logfile) 62 print('ERROR: SDK preparation failed: error log written to %s' % logfile)
63 return ret 63 return ret
64 64
65if __name__ == "__main__": 65if __name__ == "__main__":