summaryrefslogtreecommitdiffstats
path: root/lib/bb/build.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-24 11:28:38 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-24 11:29:46 +0100
commit7088c0e8553dd3c408b5bc06f8c34d5b72e9ea9a (patch)
treebd9066c423444a05c4f0a4d3b66226d48c474323 /lib/bb/build.py
parent54817d0de667941ee68fe3490684159e2d90e9c5 (diff)
downloadbitbake-7088c0e8553dd3c408b5bc06f8c34d5b72e9ea9a.tar.gz
build: Avoid empty promises
The "see xxx for further information" is misleading since it is just the same information. Clarify just to mention the that this is the location of the logfile without any empty promise. [YOCTO #4343] Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/build.py')
-rw-r--r--lib/bb/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bb/build.py b/lib/bb/build.py
index b5681b13e..bfc176d4b 100644
--- a/lib/bb/build.py
+++ b/lib/bb/build.py
@@ -60,7 +60,7 @@ class FuncFailed(Exception):
def __str__(self):
if self.logfile and os.path.exists(self.logfile):
- msg = ("%s (see %s for further information)" %
+ msg = ("%s (log file is located at %s)" %
(self.msg, self.logfile))
else:
msg = self.msg