]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
build: Avoid empty promises
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 24 May 2013 10:28:38 +0000 (11:28 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 24 May 2013 10:29:46 +0000 (11:29 +0100)
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>
lib/bb/build.py

index b5681b13e3fb12c6a6b1fc82fdbdd966790bb05a..bfc176d4bb2ccb38a9ce6395cda16b439f9f0b6e 100644 (file)
@@ -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