aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.ne>2006-08-09 13:23:26 +0000
committerFelix Domke <tmbinc@elitedvb.ne>2006-08-09 13:23:26 +0000
commit5621c9c4b3bd198a47b5b3210deea2015d8a227d (patch)
treea42491e31404943f0f3701dc61a43ccbdaa74a00 /classes
parent8234fcc96b0ad9ee2fc29eff2054412bb78a4b97 (diff)
parent136954e1061fe2160508b7ea214d0fdb7c06f0cd (diff)
downloadopenembedded-5621c9c4b3bd198a47b5b3210deea2015d8a227d.tar.gz
merge of '717b91542897124c8b4223fbacd82af0aaecf154'
and '784476b7ee644d2f1f6476d2934f6125cbe3b90a'
Diffstat (limited to 'classes')
-rw-r--r--classes/package.bbclass9
1 files changed, 6 insertions, 3 deletions
diff --git a/classes/package.bbclass b/classes/package.bbclass
index eb3a0349cb..0076a65354 100644
--- a/classes/package.bbclass
+++ b/classes/package.bbclass
@@ -306,6 +306,8 @@ python populate_packages () {
continue
if (not os.path.islink(file)) and (not os.path.exists(file)):
continue
+ if file.find('.pyo') != -1:
+ continue
fpath = os.path.join(root,file)
dpath = os.path.dirname(fpath)
bb.mkdirhier(dpath)
@@ -718,9 +720,10 @@ python package_do_split_locales() {
bb.data.setVar('PACKAGES', ' '.join(packages), d)
- rdep = (bb.data.getVar('RDEPENDS_%s' % mainpkg, d, 1) or bb.data.getVar('RDEPENDS', d, 1) or "").split()
- rdep.append('%s-locale*' % pn)
- bb.data.setVar('RDEPENDS_%s' % mainpkg, ' '.join(rdep), d)
+# we don't want to RDEPEND any package on created locales.
+# rdep = (bb.data.getVar('RDEPENDS_%s' % mainpkg, d, 1) or bb.data.getVar('RDEPENDS', d, 1) or "").split()
+# rdep.append('%s-locale*' % pn)
+# bb.data.setVar('RDEPENDS_%s' % mainpkg, ' '.join(rdep), d)
}
PACKAGEFUNCS = "do_install package_do_split_locales \