From: Marcin Juszkiewicz Date: Thu, 29 Mar 2007 13:25:19 +0000 (+0000) Subject: package.bbclass: fix build problem related to private libs X-Git-Tag: Release-2010-05/1~8868^2~927 X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5c164a27251aa8be7cbb8916a13919052387c3bd;p=openembedded.git package.bbclass: fix build problem related to private libs --- diff --git a/classes/package.bbclass b/classes/package.bbclass index 19c206ae5e..3e80b2b31c 100644 --- a/classes/package.bbclass +++ b/classes/package.bbclass @@ -598,7 +598,7 @@ python package_do_shlibs() { 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)): + if not private_libs or -1 == private_libs.find(m.group(1)): sonames.append(m.group(1)) if m and libdir_re.match(root): needs_ldconfig = True