summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2014-06-25 16:31:38 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-06-29 09:04:22 +0100
commit4d96116f1e453a0de4388a5a00192e33e58390c4 (patch)
treefd83113652763c0e3a0eeec1901dfb859005a88e /meta
parent20561edd64f01d3216aa4aa8c3b32393954f84cb (diff)
downloadpoky-4d96116f1e453a0de4388a5a00192e33e58390c4.tar.gz
classes/report-error: tweak summary message
* We don't want everyone to remove their identifying info, just if they feel the need to * Split lines for clarity * A couple of grammar/spelling tweaks (From OE-Core rev: b5c7538416e4c7a9e594edf930fa7ee844a347e6) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/report-error.bbclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/report-error.bbclass b/meta/classes/report-error.bbclass
index 15adc97b52..5fe2355842 100644
--- a/meta/classes/report-error.bbclass
+++ b/meta/classes/report-error.bbclass
@@ -59,8 +59,8 @@ python errorreport_handler () {
59 if(len(failures) > 0): 59 if(len(failures) > 0):
60 filename = "error_report_" + e.data.getVar("BUILDNAME")+".txt" 60 filename = "error_report_" + e.data.getVar("BUILDNAME")+".txt"
61 datafile = errorreport_savedata(e, jsondata, filename) 61 datafile = errorreport_savedata(e, jsondata, filename)
62 bb.note("The errors of this build are stored in: %s. You can send the errors to an upstream server by running: send-error-report %s [server]" % (datafile, datafile)) 62 bb.note("The errors for this build are stored in %s\nYou can send the errors to an upstream server by running:\n send-error-report %s [server]" % (datafile, datafile))
63 bb.note("The contents of these logs will be posted in public if you use the above script. Please ensure you remove any identifying or propriety information before sending.") 63 bb.note("The contents of these logs will be posted in public if you use the above command with the default server. If you need to do so, please ensure you remove any identifying or proprietary information before sending.")
64} 64}
65 65
66addhandler errorreport_handler 66addhandler errorreport_handler