]> code.ossystems Code Review - openembedded-core.git/commitdiff
archiver.bbclass: Amend the problem for moving tarballs in ${DL_DIR} to ${DEPLOY_DIR...
authorXiaofeng Yan <xiaofeng.yan@windriver.com>
Wed, 11 Apr 2012 06:15:17 +0000 (14:15 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 11 Apr 2012 10:17:07 +0000 (11:17 +0100)
When running "bitbake core-imamge-minmal", the error information like the following  will appear:
ERROR: Error executing a python function in
/buildarea2/yzhao-test/poky-test/meta/recipes-core/zlib/zlib_1.2.6.bb:
IOError: [Errno 2] No such file or directory:
'/buildarea2/yzhao-test/poky-test/build-archive/downloads/zlib-1.2.6.tar.bz2'

An absolute path from variable "file" pointed to tarballs in ${DL_DIR} \
cause this problem. So return base-name of "file" for fixing this bug here.

[YOCTO #2272]

Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/archiver.bbclass

index 4e4e964a24b594d7b41f18d9c6ccf158bd7f09af..59b58f4403038a15b68f8c5b2f4a34c6ed2f8de9 100644 (file)
@@ -173,6 +173,7 @@ def archive_sources(d,stage_name):
        file = get_source_from_downloads(d,stage_name)
        if file:
                shutil.copy(file,work_dir)
+               file = os.path.basename(file)
        else:
                file = archive_sources_from_directory(d,stage_name)
        return file