aboutsummaryrefslogtreecommitdiffstats
path: root/classes/package.bbclass
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2006-07-28 13:50:43 +0000
committerHolger Freyther <zecke@selfish.org>2006-07-28 13:50:43 +0000
commit728ab18f8aed809dbf0652feacc9d9540038c79f (patch)
treeba9f6cf1ce7f2807edb383eb615b469066c53add /classes/package.bbclass
parent5224cbfa58d5bb64de81177fd35cfa419f4a1450 (diff)
downloadopenembedded-728ab18f8aed809dbf0652feacc9d9540038c79f.tar.gz
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
Diffstat (limited to 'classes/package.bbclass')
-rw-r--r--classes/package.bbclass2
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 () {