From: Richard Purdie Date: Fri, 24 May 2013 10:28:38 +0000 (+0100) Subject: build: Avoid empty promises X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7088c0e8553dd3c408b5bc06f8c34d5b72e9ea9a;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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 --- diff --git a/lib/bb/build.py b/lib/bb/build.py index b5681b13e3f..bfc176d4bb2 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