base.bbclass: Add error message for base_do_unpack failures

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie 2010-12-31 11:12:24 +00:00
parent 9e912c7303
commit cb79459c30
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ python base_do_unpack() {
local = os.path.realpath(local)
ret = oe_unpack_file(local, localdata, url)
if not ret:
raise bb.build.FuncFailed()
raise bb.build.FuncFailed("oe_unpack_file failed with return value %s" % ret)
}
GIT_CONFIG = "${STAGING_DIR_NATIVE}/usr/etc/gitconfig"