don't expand RDEPENDS in read_shlibs()
authorPhil Blundell <philb@gnu.org>
Sat, 24 Jul 2004 16:34:33 +0000 (16:34 +0000)
committerPhil Blundell <philb@gnu.org>
Sat, 24 Jul 2004 16:34:33 +0000 (16:34 +0000)
BKrev: 41028f99Ncg2ui0XmSal7y9WxScqCQ

classes/base.oeclass

index b2a134c..676077d 100644 (file)
@@ -576,7 +576,7 @@ def explode_deps(s):
 python read_shlibdeps () {
        packages = (oe.data.getVar('PACKAGES', d, 1) or "").split()
        for pkg in packages:
-               rdepends = explode_deps(oe.data.getVar('RDEPENDS_' + pkg, d, 1) or oe.data.getVar('RDEPENDS', d, 1) or "")
+               rdepends = explode_deps(oe.data.getVar('RDEPENDS_' + pkg, d, 0) or oe.data.getVar('RDEPENDS', d, 0) or "")
                shlibsfile = oe.data.expand("${WORKDIR}/install/" + pkg + ".shlibdeps", d)
                if os.access(shlibsfile, os.R_OK):
                        fd = file(shlibsfile)