summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Hart <dvhart@linux.intel.com>2011-10-18 12:00:56 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-10-20 17:13:37 +0100
commitc37b2094cb36f60fe47145940c469db0faa2c6d4 (patch)
tree622f1028d18d1c0b85968534f01db2701288d980
parent8cf683bf7657e248c946404b64d1668f89f75f4e (diff)
downloadast2050-yocto-poky-c37b2094cb36f60fe47145940c469db0faa2c6d4.zip
ast2050-yocto-poky-c37b2094cb36f60fe47145940c469db0faa2c6d4.tar.gz
insane.bbclass: print full path on invalid LICENSE_FILES_CHKSUM
Currently only the basename is printed when os.path.isfile() returns a failure for the license file. If the file is present, but in the wrong directory, this can be non-obvious to debug. Use the full path instead. Make a minor grammatical correction in the error message while we're at it. (From OE-Core rev: 80bd0c774fb691977b20e2d775212d849a33bf2b) Signed-off-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/classes/insane.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass
index b861e85..017f7be 100644
--- a/meta/classes/insane.bbclass
+++ b/meta/classes/insane.bbclass
@@ -330,7 +330,7 @@ def package_qa_check_license(workdir, d):
(type, host, path, user, pswd, parm) = bb.decodeurl(url)
srclicfile = os.path.join(srcdir, path)
if not os.path.isfile(srclicfile):
- raise bb.build.FuncFailed( pn + ": LIC_FILES_CHKSUM points to invalid file: " + path)
+ raise bb.build.FuncFailed( pn + ": LIC_FILES_CHKSUM points to an invalid file: " + srclicfile)
if 'md5' not in parm:
bb.error(pn + ": md5 checksum is not specified for ", url)
OpenPOWER on IntegriCloud