From 3b4b782e07ba1a0a4887216d7850bb75274570d2 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 24 May 2013 11:28:38 +0100 Subject: bitbake: 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] (Bitbake rev: 7088c0e8553dd3c408b5bc06f8c34d5b72e9ea9a) Signed-off-by: Richard Purdie --- bitbake/lib/bb/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index b5681b13e3..bfc176d4bb 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/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 -- cgit v1.2.3-54-g00ecf