summaryrefslogtreecommitdiffstats
path: root/recipes-devtools
diff options
context:
space:
mode:
authorPaul Barker <paul@paulbarker.me.uk>2017-01-01 22:21:20 +0000
committerBruce Ashfield <bruce.ashfield@windriver.com>2017-01-03 10:28:33 -0500
commite64f378b93e6fed8f5e8a019e1c4a82bdad4fe0c (patch)
tree79cbcd4bfe6b2db3e8baf0a0a9c2d224296e7692 /recipes-devtools
parentb0a72cd343c9bdb38d01f6dbf0c5ac3d55c769dd (diff)
downloadmeta-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.inc2
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"
17export CGO_ENABLED = "1" 17export CGO_ENABLED = "1"
18export CC_FOR_TARGET="${TARGET_PREFIX}gcc ${TARGET_CC_ARCH} --sysroot=${STAGING_DIR_TARGET}" 18export CC_FOR_TARGET="${TARGET_PREFIX}gcc ${TARGET_CC_ARCH} --sysroot=${STAGING_DIR_TARGET}"
19export CXX_FOR_TARGET="${TARGET_PREFIX}g++ ${TARGET_CC_ARCH} --sysroot=${STAGING_DIR_TARGET}" 19export CXX_FOR_TARGET="${TARGET_PREFIX}g++ ${TARGET_CC_ARCH} --sysroot=${STAGING_DIR_TARGET}"
20CC = "${@d.getVar('BUILD_CC', True).strip()}" 20CC = "${@d.getVar('BUILD_CC').strip()}"
21 21
22do_configure[noexec] = "1" 22do_configure[noexec] = "1"
23 23