diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-24 11:28:38 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-24 11:30:35 +0100 |
commit | 3b4b782e07ba1a0a4887216d7850bb75274570d2 (patch) | |
tree | 53d398f03a48a51bb2b4bfb5c426952f1a8117f7 /bitbake/lib/bb/build.py | |
parent | 72accaf7d909bea14412fee06004b6b8acbe5b80 (diff) | |
download | poky-3b4b782e07ba1a0a4887216d7850bb75274570d2.tar.gz |
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/build.py')
-rw-r--r-- | bitbake/lib/bb/build.py | 2 |
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 |