aboutsummaryrefslogtreecommitdiffstats
path: root/meta/files
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2016-08-08 23:05:04 +1200
committerPaul Eggleton <paul.eggleton@linux.intel.com>2016-08-11 16:40:46 +1200
commit8b812f1819f53d4f58454d094f7e8c9ea9879242 (patch)
tree493839195fb78c73ab828b7523f74e93d251c6b3 /meta/files
parent8aa96837fb9a30d03e547d7c7d58706f7d7a8aab (diff)
downloadopenembedded-core-contrib-paule/extsdkfixes13-oe.tar.gz
classes/populate_sdk_ext: drop duplicated error messagepaule/extsdkfixes13-oe
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). Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
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():
for line in f:
logf.write(line)
if ret:
- print('ERROR: SDK preparation failed: see %s' % logfile)
+ print('ERROR: SDK preparation failed: error log written to %s' % logfile)
return ret
if __name__ == "__main__":