diff options
author | Paul Barker <paul@paulbarker.me.uk> | 2017-01-01 22:21:20 +0000 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2017-01-03 10:28:33 -0500 |
commit | e64f378b93e6fed8f5e8a019e1c4a82bdad4fe0c (patch) | |
tree | 79cbcd4bfe6b2db3e8baf0a0a9c2d224296e7692 /recipes-devtools | |
parent | b0a72cd343c9bdb38d01f6dbf0c5ac3d55c769dd (diff) | |
download | meta-virtualization-e64f378b93e6fed8f5e8a019e1c4a82bdad4fe0c.tar.gz |
Remove True option to getVar calls
getVar() now defaults to expanding by default.
Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-devtools')
-rw-r--r-- | recipes-devtools/go-cross/go-cross.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-devtools/go-cross/go-cross.inc b/recipes-devtools/go-cross/go-cross.inc index 31749878..0859fd00 100644 --- a/recipes-devtools/go-cross/go-cross.inc +++ b/recipes-devtools/go-cross/go-cross.inc | |||
@@ -17,7 +17,7 @@ export GOROOT_FINAL = "${libdir}/go" | |||
17 | export CGO_ENABLED = "1" | 17 | export CGO_ENABLED = "1" |
18 | export CC_FOR_TARGET="${TARGET_PREFIX}gcc ${TARGET_CC_ARCH} --sysroot=${STAGING_DIR_TARGET}" | 18 | export CC_FOR_TARGET="${TARGET_PREFIX}gcc ${TARGET_CC_ARCH} --sysroot=${STAGING_DIR_TARGET}" |
19 | export CXX_FOR_TARGET="${TARGET_PREFIX}g++ ${TARGET_CC_ARCH} --sysroot=${STAGING_DIR_TARGET}" | 19 | export CXX_FOR_TARGET="${TARGET_PREFIX}g++ ${TARGET_CC_ARCH} --sysroot=${STAGING_DIR_TARGET}" |
20 | CC = "${@d.getVar('BUILD_CC', True).strip()}" | 20 | CC = "${@d.getVar('BUILD_CC').strip()}" |
21 | 21 | ||
22 | do_configure[noexec] = "1" | 22 | do_configure[noexec] = "1" |
23 | 23 | ||