mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
base.bbclass: Add error message for base_do_unpack failures
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
@@ -255,7 +255,7 @@ python base_do_unpack() {
|
|||||||
local = os.path.realpath(local)
|
local = os.path.realpath(local)
|
||||||
ret = oe_unpack_file(local, localdata, url)
|
ret = oe_unpack_file(local, localdata, url)
|
||||||
if not ret:
|
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"
|
GIT_CONFIG = "${STAGING_DIR_NATIVE}/usr/etc/gitconfig"
|
||||||
|
|||||||
Reference in New Issue
Block a user