diff options
author | Richard Purdie <richard@openedhand.com> | 2007-08-21 15:22:06 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-08-21 15:22:06 +0000 |
commit | 2ed6d9cf2880aac21beaa34efd06bea28fa73637 (patch) | |
tree | 17379cedbc5a8418e143f4547705a33267aa2f1b /meta | |
parent | 3d29811af5f6a1401535a5bca3e9dc6179bcdbae (diff) | |
download | poky-2ed6d9cf2880aac21beaa34efd06bea28fa73637.tar.gz |
base.bbclass: Make populate_staging run after install to avoid conflicts
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2534 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/base.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index acdc00cd99..3551e35a1b 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -691,7 +691,8 @@ do_populate_staging[dirs] = "${STAGING_DIR}/${TARGET_SYS}/bin ${STAGING_DIR}/${T | |||
691 | ${STAGING_DATADIR} \ | 691 | ${STAGING_DATADIR} \ |
692 | ${S} ${B}" | 692 | ${S} ${B}" |
693 | 693 | ||
694 | addtask populate_staging after do_compile | 694 | # Could be compile but populate_staging and do_install shouldn't run at the same time |
695 | addtask populate_staging after do_install | ||
695 | 696 | ||
696 | python do_populate_staging () { | 697 | python do_populate_staging () { |
697 | bb.build.exec_func('do_stage', d) | 698 | bb.build.exec_func('do_stage', d) |