diff options
author | Richard Purdie <richard@openedhand.com> | 2006-09-18 20:31:39 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-09-18 20:31:39 +0000 |
commit | 04f695333350e31fa87b7822c17a073af73fcd84 (patch) | |
tree | 93d7d304e502db5ab9a065ff81088f100c09c079 /meta/classes/package.bbclass | |
parent | 1f0424a2d3f1277a989d37c18d2630f9e03d8599 (diff) | |
download | poky-04f695333350e31fa87b7822c17a073af73fcd84.tar.gz |
classes: Reorder tasks so staging occurs after packaging. Add do_install into the task chain with dirs fix. Changes merged from OE
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@727 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/package.bbclass')
-rw-r--r-- | meta/classes/package.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index c7f366e19b..8a7760724e 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -725,7 +725,7 @@ python package_do_split_locales() { | |||
725 | bb.data.setVar('RDEPENDS_%s' % mainpkg, ' '.join(rdep), d) | 725 | bb.data.setVar('RDEPENDS_%s' % mainpkg, ' '.join(rdep), d) |
726 | } | 726 | } |
727 | 727 | ||
728 | PACKAGEFUNCS = "do_install package_do_split_locales \ | 728 | PACKAGEFUNCS = "package_do_split_locales \ |
729 | populate_packages package_do_shlibs \ | 729 | populate_packages package_do_shlibs \ |
730 | package_do_pkgconfig read_shlibdeps" | 730 | package_do_pkgconfig read_shlibdeps" |
731 | python package_do_package () { | 731 | python package_do_package () { |
@@ -738,4 +738,4 @@ do_package[dirs] = "${D}" | |||
738 | do_package[deptask] = "do_package" | 738 | do_package[deptask] = "do_package" |
739 | populate_packages[dirs] = "${D}" | 739 | populate_packages[dirs] = "${D}" |
740 | EXPORT_FUNCTIONS do_package do_shlibs do_split_locales mapping_rename_hook | 740 | EXPORT_FUNCTIONS do_package do_shlibs do_split_locales mapping_rename_hook |
741 | addtask package before do_build after do_populate_staging | 741 | addtask package before do_build after do_install |