summaryrefslogtreecommitdiffstats
path: root/recipes-core
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2016-02-23 17:45:04 +1000
committerNathan Rossi <nathan@nathanrossi.com>2016-02-23 17:45:04 +1000
commit449a3fb9fce5370926b516e7454d44bd8a04ef85 (patch)
tree9baea9031fe4c6dbabec7c793a7ef56818d8122b /recipes-core
parent3353261d9036b691fe83b3f92598b25238b8abbc (diff)
downloadmeta-xilinx-449a3fb9fce5370926b516e7454d44bd8a04ef85.tar.gz
external-xilinx-toolchain.bb: Fix usage of getVar()
getVar() has changed such that it now requires the expand argument. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Diffstat (limited to 'recipes-core')
-rw-r--r--recipes-core/meta/external-xilinx-toolchain.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-core/meta/external-xilinx-toolchain.bb b/recipes-core/meta/external-xilinx-toolchain.bb
index d3036cc9..2274eea2 100644
--- a/recipes-core/meta/external-xilinx-toolchain.bb
+++ b/recipes-core/meta/external-xilinx-toolchain.bb
@@ -168,6 +168,6 @@ FILES_gdbserver-dbg = "${bindir}/.debug/gdbserver"
168CSL_VER_MAIN ??= "" 168CSL_VER_MAIN ??= ""
169 169
170python () { 170python () {
171 if not d.getVar("CSL_VER_MAIN"): 171 if not d.getVar("CSL_VER_MAIN", True):
172 raise bb.parse.SkipPackage("External toolchain not configured (CSL_VER_MAIN not set).") 172 raise bb.parse.SkipPackage("External toolchain not configured (CSL_VER_MAIN not set).")
173} 173}