aboutsummaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorMichael Wood <michael.g.wood@intel.com>2016-05-12 14:31:58 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-05-14 07:26:40 +0100
commitffdc9550c109facf3a3ebdf90c1ba8153cac90dd (patch)
tree6aec37ce0099f621029bb23f24052d565f1388c8 /meta
parent3d9e9af19a340469dab0182c298236d1d50177db (diff)
downloadopenembedded-core-contrib-ffdc9550c109facf3a3ebdf90c1ba8153cac90dd.tar.gz
report-error: Replace the build directory path in the error text
Replace the TOPDIR in the output error file so that the error report once submitted can then be more easily matched to find duplicate error reports. This also reduces the need to manually redact any information that might be in the error log path such as hostnames or home directories. Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/report-error.bbclass5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/classes/report-error.bbclass b/meta/classes/report-error.bbclass
index 82b5bcd690..20d2bef797 100644
--- a/meta/classes/report-error.bbclass
+++ b/meta/classes/report-error.bbclass
@@ -58,6 +58,11 @@ python errorreport_handler () {
try:
logFile = codecs.open(log, 'r', 'utf-8')
logdata = logFile.read()
+
+ topdir = e.data.getVar('TOPDIR', True)
+ if topdir:
+ logdata = logdata.replace(topdir, ' ')
+
logFile.close()
except:
logdata = "Unable to read log file"