summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/build.py2
1 files changed, 1 insertions, 1 deletions
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):
60 60
61 def __str__(self): 61 def __str__(self):
62 if self.logfile and os.path.exists(self.logfile): 62 if self.logfile and os.path.exists(self.logfile):
63 msg = ("%s (see %s for further information)" % 63 msg = ("%s (log file is located at %s)" %
64 (self.msg, self.logfile)) 64 (self.msg, self.logfile))
65 else: 65 else:
66 msg = self.msg 66 msg = self.msg