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

View File

@@ -7,7 +7,7 @@ def rust_base_dep(d):
# Taken from meta/classes/base.bbclass `base_dep_prepend` and modified to
# use rust instead of gcc
deps = ""
if not d.getVar('INHIBIT_DEFAULT_RUST_DEPS'):
if not d.getVar('INHIBIT_DEFAULT_RUST_DEPS', True):
if (d.getVar('HOST_SYS', True) != d.getVar('BUILD_SYS', True)):
deps += " virtual/${TARGET_PREFIX}rust"
else: