diff options
author | Holger Freyther <zecke@selfish.org> | 2006-07-28 13:50:43 +0000 |
---|---|---|
committer | Holger Freyther <zecke@selfish.org> | 2006-07-28 13:50:43 +0000 |
commit | 728ab18f8aed809dbf0652feacc9d9540038c79f (patch) | |
tree | ba9f6cf1ce7f2807edb383eb615b469066c53add | |
parent | 5224cbfa58d5bb64de81177fd35cfa419f4a1450 (diff) |
classes/package.bbclass: Only set PACKAGEFUNCS once!
Set PACKAGEFUNCS only once. Now if more than one bbclass inherits
package both additional functions will be executed. The new packagefuncs
will be appended to the list and the old ones will not be lost
-rw-r--r-- | classes/package.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/package.bbclass b/classes/package.bbclass index eb3a0349cb..39e6a06b41 100644 --- a/classes/package.bbclass +++ b/classes/package.bbclass @@ -723,7 +723,7 @@ python package_do_split_locales() { bb.data.setVar('RDEPENDS_%s' % mainpkg, ' '.join(rdep), d) } -PACKAGEFUNCS = "do_install package_do_split_locales \ +PACKAGEFUNCS ?= " do_install package_do_split_locales \ populate_packages package_do_shlibs \ package_do_pkgconfig read_shlibdeps" python package_do_package () { |