diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-01-20 12:54:48 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-20 23:29:43 +0000 |
commit | 20925a6c4082f5a70b342cf82c19df42f5dd2b2c (patch) | |
tree | f369bd3b8987f486eae83035aa808aac0bcf6771 /meta/recipes-core | |
parent | 5da9423217a5cd204d17a0f7bbe248082a1b257c (diff) | |
download | poky-20925a6c4082f5a70b342cf82c19df42f5dd2b2c.tar.gz |
meta-environment: Remove the recursive dependency on do_compile
It is not needed to have dependency on each do_compile of its recursive
depend tasks.
This problem is triggered by building meta-toolchain-sdk from prebuilt
result. Some packages like quilt-native, which is already been populated
and packaged by do_populate_sysroot_setscene and
do_package_write_xxx_setscene, however this recursive dependency of
do_compile triggers the tasks flow of "do_setscene --> do_fetch -->
do_unpack --> ..." again and do_setscene removes all the quilt-native
files, making the other recipes failed while do_patch.
Thanks for Kevin's help in root causing this issue.
CC: Lianhao Lu <lianhao.lu@intel.com>
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/meta/meta-environment.bb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/recipes-core/meta/meta-environment.bb b/meta/recipes-core/meta/meta-environment.bb index 9f7e382d72..4ba919f7fe 100644 --- a/meta/recipes-core/meta/meta-environment.bb +++ b/meta/recipes-core/meta/meta-environment.bb | |||
@@ -39,7 +39,6 @@ do_generate_content() { | |||
39 | echo 'Metadata Revision: ${METADATA_REVISION}' >> $versionfile | 39 | echo 'Metadata Revision: ${METADATA_REVISION}' >> $versionfile |
40 | echo 'Timestamp: ${DATETIME}' >> $versionfile | 40 | echo 'Timestamp: ${DATETIME}' >> $versionfile |
41 | } | 41 | } |
42 | do_generate_content[recrdeptask] = "do_compile" | ||
43 | addtask generate_content before do_install after do_compile | 42 | addtask generate_content before do_install after do_compile |
44 | 43 | ||
45 | do_install[nostamp] = "1" | 44 | do_install[nostamp] = "1" |