diff options
| author | Nathan Rossi <nathan@nathanrossi.com> | 2016-02-23 17:45:04 +1000 |
|---|---|---|
| committer | Nathan Rossi <nathan@nathanrossi.com> | 2016-02-23 17:45:04 +1000 |
| commit | 449a3fb9fce5370926b516e7454d44bd8a04ef85 (patch) | |
| tree | 9baea9031fe4c6dbabec7c793a7ef56818d8122b | |
| parent | 3353261d9036b691fe83b3f92598b25238b8abbc (diff) | |
| download | meta-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>
| -rw-r--r-- | recipes-core/meta/external-xilinx-toolchain.bb | 2 |
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" | |||
| 168 | CSL_VER_MAIN ??= "" | 168 | CSL_VER_MAIN ??= "" |
| 169 | 169 | ||
| 170 | python () { | 170 | python () { |
| 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 | } |
