Address parse errors while using getVar to calculate dependency information

This commit is contained in:
Derek Straka
2016-02-18 13:24:43 -05:00
parent 2eafa1892d
commit 78e51cd7f4
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ OVERLAP_LIBS = "\
rand \
"
def get_overlap_deps(d):
deps = d.getVar("DEPENDS").split()
deps = d.getVar("DEPENDS", True).split()
overlap_deps = []
for o in d.getVar("OVERLAP_LIBS", True).split():
l = len([o for dep in deps if (o + '-rs' in dep)])