diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-03-29 13:16:55 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2007-03-29 13:16:55 +0000 |
commit | 00154e90efa8f3004a1a14fe323c3377751fb1cd (patch) | |
tree | 0958fb28d7a3136ef2609fcaf7a9367328d105c3 | |
parent | fa30c973cc72f69f469bfcffb210069ee443351b (diff) |
disapproval of revision '0d2e69a0248ac99b9f990dfb473d63c9653f0f7c'
-rw-r--r-- | classes/package.bbclass | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/classes/package.bbclass b/classes/package.bbclass index 19c206ae5e..07fdb7f890 100644 --- a/classes/package.bbclass +++ b/classes/package.bbclass @@ -573,7 +573,6 @@ python package_do_shlibs() { bb.mkdirhier(shlibs_dir) needed = {} - private_libs = bb.data.getVar('PRIVATE_LIBS', d, 1) for pkg in packages.split(): needs_ldconfig = False bb.debug(2, "calculating shlib provides for %s" % pkg) @@ -597,9 +596,7 @@ python package_do_shlibs() { needed[pkg].append(m.group(1)) m = re.match("\s+SONAME\s+([^\s]*)", l) if m and not m.group(1) in sonames: - # if library is private (only used by package) then do not build shlib for it - if private_libs == '' or -1 == private_libs.find(m.group(1)): - sonames.append(m.group(1)) + sonames.append(m.group(1)) if m and libdir_re.match(root): needs_ldconfig = True shlibs_file = os.path.join(shlibs_dir, pkg + ".list") |