diff options
author | Richard Purdie <richard@openedhand.com> | 2007-04-03 11:31:02 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-04-03 11:31:02 +0000 |
commit | 409335beaede58ed792030f9da0fcea39f32f1c7 (patch) | |
tree | 2d25f86c2c48caef8a9ef8f301b423ae7b0ee81e /meta/classes/package.bbclass | |
parent | bd0ca262c95d28dc45305efbc03e53607e9c9a0a (diff) | |
download | poky-409335beaede58ed792030f9da0fcea39f32f1c7.tar.gz |
classes: Rework core dependencies to work properly at the task level
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1427 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes/package.bbclass')
-rw-r--r-- | meta/classes/package.bbclass | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 21fe94e94e..0919f302b9 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass | |||
@@ -116,8 +116,18 @@ def do_split_packages(d, root, file_regex, output_pattern, description, postinst | |||
116 | 116 | ||
117 | bb.data.setVar('PACKAGES', ' '.join(packages), d) | 117 | bb.data.setVar('PACKAGES', ' '.join(packages), d) |
118 | 118 | ||
119 | PACKAGE_DEPENDS ?= "file-native fakeroot-native" | 119 | do_package[depends] = "file-native:do_populate_staging" |
120 | DEPENDS_prepend =+ "${PACKAGE_DEPENDS} " | 120 | |
121 | python () { | ||
122 | import bb | ||
123 | |||
124 | if bb.data.getVar('PACKAGES', d, 1) != '': | ||
125 | deps = bb.data.getVarFlag('do_package_write', 'depends', d) or "" | ||
126 | for dep in (bb.data.getVar('PACKAGE_EXTRA_DEPENDS', d, 1) or "").split(): | ||
127 | deps += " %s:do_populate_staging" % dep | ||
128 | bb.data.setVarFlag('do_package_write', 'depends', deps, d) | ||
129 | } | ||
130 | |||
121 | # file(1) output to match to consider a file an unstripped executable | 131 | # file(1) output to match to consider a file an unstripped executable |
122 | FILE_UNSTRIPPED_MATCH ?= "not stripped" | 132 | FILE_UNSTRIPPED_MATCH ?= "not stripped" |
123 | #FIXME: this should be "" when any errors are gone! | 133 | #FIXME: this should be "" when any errors are gone! |
@@ -126,7 +136,7 @@ IGNORE_STRIP_ERRORS ?= "1" | |||
126 | runstrip() { | 136 | runstrip() { |
127 | # Function to strip a single file, called from RUNSTRIP in populate_packages below | 137 | # Function to strip a single file, called from RUNSTRIP in populate_packages below |
128 | # A working 'file' (one which works on the target architecture) | 138 | # A working 'file' (one which works on the target architecture) |
129 | # is necessary for this stuff to work, hence the addition to PACKAGES_DEPENDS | 139 | # is necessary for this stuff to work, hence the addition to do_package[depends] |
130 | 140 | ||
131 | local ro st | 141 | local ro st |
132 | 142 | ||